智能手机的字体和字体大小单位
开发智能手机网站时建议使用哪种字体和字体大小单位? 对于智能手机,我指的是具有良好网络浏览器的设备。
我不确定使用 px、em 或 %
感谢您的建议和提示。
问候 鲍勃
Which font and which font-size unit is recomended for developing web sites for smartphones?
With smartphone I mean a device with a good web browser.
I am not sure to go with px, em or %
Thanks for sugestions and tips.
regards
bob
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会使用 CSS
medium
、large
、small
、x-large
等...因为浏览器会了解用户的偏好,并且不会局限于固定的尺寸。I would use the CSS
medium
,large
,small
,x-large
, etc... since the browser will know the user's preference and won't be limited to a fixed size.如果您主要显示大量文本供用户阅读,请按照 Ben S 所写的操作。 浏览器要么预设为中/大/小/等合适的尺寸,要么用户有自己的偏好。 仅在有充分理由的情况下覆盖用户的偏好。
覆盖用户一般浏览器首选项的一个很好的理由是,如果您正在创建 Web 应用程序的界面。 在这种情况下,请使用可用的最大字体大小。 您有办法询问您的用户吗? 要么使用服务器日志并针对最流行的设备进行调整(您可能可以为每个设备发送不同的样式表),要么寻求反馈。
看看 CSS 规范,pt 单位看起来很有前途,只要确保你的目标浏览器正确使用它即可。 换句话说,在目标设备本身上进行测试。
If you are mostly displaying lots of text for the user to read, do as Ben S wrote. Either the browser will be preset with good sizes for medium/large/small/etc, or the user will have his own preferences. Only override the user's preferences with good reason.
One good reason to override a user's general browser preferences would be if you are creating an interface to a web application. In that case use the biggest font size that is functional. Do you have a way to ask your users? Either use the server logs and tune for the most popular devices (you can probably send a different stylesheet for each), or ask for feedback.
Looking at the CSS spec, the pt unit looks promising, just be sure the browsers you are targeting use it correctly. In other words, test it out on the target device(s) themselves.