Answers
淘宝的M站是用rem的啊,字体淘宝用的是
sans-serif
,也就是用系统自带默认字体。
大小的话,可以类似下面这样设置,其他样式就以
html
的样式为基本。
@media only screen and (min-width: 320px){
html {
font-size: 20px !important;
}
}
@media only screen and (min-width: 640px){
html {
font-size: 40px !important;
}
}
@media only screen and (min-width: 750px){
html {
font-size: 46.875px !important;
}
}
@media only screen and (min-width: 1242px){
html {
font-size: 77.625px !important;
}
}
T0Tyomi
answered 9 years, 11 months ago