Problem 1: mobile terminal 1px pixel line problem
Set 1px pixel line thickness wrong on mobile phone
Solutions:
Use 0.03rem to set the line
Problem two adaptive layout, uniform font display differences
Percentage/REM to adapt to the layout, uniform font, different phone difference is larger
Solutions:
For phones with large or small screens, you can set different default fonts
html{ font-size: 16px; } @media screen and (max-height: 359px){// font-size: 12px; }}Copy the code