码迷,mamicode.com
首页 > 移动开发 > 详细

移动端字体单位font-size选择px还是rem

时间:2016-01-16 19:03:40      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

    对于只需要适配少部分手机设备,且分辨率对页面影响不大的,使用px即可

    对于需要适配各种移动设备,使用rem,例如只需要适配iPhone和iPad等分辨率差别比较挺大的设备

    rem配置参考:




html{font-size:10px} @media screen and (min-width:321px) and (max-width:375px){html{font-size:11px}} @media screen and (min-width:376px) and (max-width:414px){html{font-size:12px}} @media screen and (min-width:415px) and (max-width:639px){html{font-size:15px}} @media screen and (min-width:640px) and (max-width:719px){html{font-size:20px}} @media screen and (min-width:720px) and (max-width:749px){html{font-size:22.5px}} @media screen and (min-width:750px) and (max-width:799px){html{font-size:23.5px}} @media screen and (min-width:800px){html{font-size:25px}}

移动端字体单位font-size选择px还是rem

标签:

原文地址:http://www.cnblogs.com/ll-taj/p/5135743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!