IE(7&8)渲染基本字体稍大

发布于 2024-11-02 20:58:37 字数 167 浏览 1 评论 0原文

a {font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 9px;}

显然 IE 渲染的 font-size: 9px 稍大一些。 “稍大”足以破坏布局。有人可以帮我解决这个问题吗?我现在有点生气:(

a {font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 9px;}

Apparently IEs render font-size: 9px slightly larger. 'slightly-large' enough to break a layout. Can somebody please please help me with this issue?? I am kinda annoyed now :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

初见你 2024-11-09 20:58:37

根据您使用的浏览器和安装的字体,布局会略有不同。您永远不能指望 9px 文本恰好是某个特定大小。

网页设计的部分挑战是在布局中建立足够的灵活性,这样就不会成为问题。

The layout will be slightly different depending on what browser you're using and what fonts are installed. You can never count on 9px text being exactly a certain size.

Part of the challenge of web design is to build enough flexibility in your layout so that this doesn't become an issue.

离笑几人歌 2024-11-09 20:58:37

尝试设置行高。这将有助于统一不同浏览器之间的字体。

a {font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 9px; line-height: 1.3em; }

Try setting the line-height. This will help uniform the font across different browsers.

a {font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 9px; line-height: 1.3em; }
请持续率性 2024-11-09 20:58:37

尝试使用重置CSS。在谷歌上你可以找到很多相关信息。

Try to use a reset css. On google you can find lots of information about that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文