既然你会用@media screen那么就更简单了,下面的是我以前做的时候一个例子,你可以试一下;
先设置一个区域让,设置最大宽度,与最小宽度:如:.header{color:#1d1d1d; width:100%; text-align:center;min-width:320px;margin:0 auto;max-width:640px;z-index: 999; overflow:hidden}
你可以测试一下,下面的max-width:360px判断浏览器的宽度:当浏览器小于360px,执行font-size:15.5px
其余的应该就明白了吧,当浏览器大于360px、400px这些即可执行后面body里属性
@media screen and (max-width:360px){body,input,select{font-size:15.5px}}
@media screen and (min-width:360px){body,input,select{font-size:15.75px}}
@media screen and (min-width:400px){body,input,select{font-size:17.5px}}
@media screen and (min-width:480px){body,input,select{font-size:21px}}
@media screen and (min-width:560px){body,input,select{font-size:24.5px}}
@media screen and (min-width:600px){body,input,select{font-size:26.25px}}
@media screen and (min-width:640px){body,input,select{font-size:28px}}
rem也是相对于固定值的 ,%也是一个相对值 。。。