@media only screenweb开发不同分辨率下的字体显示规范

@media only screen and (min-width: 320px){
html {
font-size: 75%!important;
}
}

@media only screen and (min-width: 360px) and (max-width: 374px){
html {
font-size: 84%!important;
}
}

@media only screen and (min-width: 375px){
html {
font-size: 87.89%!important;
}
}
@media only screen and (min-width: 414px){
html {
font-size: 97.03%!important;
}
}
@media only screen and (min-width: 641px){
html {
font-size: 125%!important;
}
}

posted @ 2016-06-15 10:28  lesa  阅读(889)  评论(0编辑  收藏  举报