Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在设计移动网站时,声明字体大小的最佳方式是什么?目前虽然我正在使用视口,但我的文本应该只有 1 行,但会分成 2 行。我应该使用 px、em、% 还是(小、大等)声明我的字体大小?干杯:)
使用像素或 em 很好,但如果您希望字体在移动视图中看起来相同,则应添加
-webkit-text-size-adjust: none;
这将保持大小,但会影响可读性。
句法
-webkit-text-size-adjust: none | auto | <percentage>;