移动网站的良好字体大小方法是什么?
这仍然是移动设备的最佳解决方案吗?专门针对旧手机?
body { font-size: 62.5%; /* 16px × 62.5% = 10px */ }
h1 { font-size: 2em; /* 10px × 2em = 20px */ }
p { font-size: 1.2em; /* 10px × 1.2em = 12px */ }
Is this still a best solution for mobile? specially for older mobiles?
body { font-size: 62.5%; /* 16px × 62.5% = 10px */ }
h1 { font-size: 2em; /* 10px × 2em = 20px */ }
p { font-size: 1.2em; /* 10px × 1.2em = 12px */ }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我个人使用
font-size:large
font-size:medium
font-size:small
并假设设备会根据屏幕调整大小。通常工作正常。
请问你为什么要尝试让 css 验证?
I personally use
font-size: large
font-size: medium
font-size: small
and assume device will adjust the size according to it's screen. Usually works fine.
May I ask why are you trying to get css validated?
好问题:),我自己也想知道,但还没有找到好的文章或教程。
在选择最适合您的情况时需要考虑的一些事项:
Good question :), wondered the same myself but not found a good article or tutorial yet.
Some things to consider when choosing what's "best" for your situation: