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.
我刚刚开始引导,我遇到了一个问题......!我的网站顶部有一个 h1 标签。我设计了它并在浏览器中查看——看起来很棒。然后我把它缩小到一个移动宽度,字体太大了!这是移动优先背后的想法:如何在移动设备中缩小相同的标签字体。
使用媒体查询。
@media (max-width: 480px) { h1{ font-size: 14px; /* or anything you want */ } }
另一种可能性是将 JavaScript 库用于响应式字体: