如何使用css使所有浏览器中的下划线大小相同?
当我在 css 中有以下内容时,IE 和 Firefox 中链接下的下划线会“加倍”。我看到有些网站有相同的字体系列,相同的字体大小,粗体,下划线不加倍。如何使下划线只有一行而不是两行(1px vs 2px)。一个可以在所有浏览器中工作的简单 CSS(如果可能的话)。我知道我可以使用 border-bottom 来解决问题,但我不太喜欢这个想法。
.a_12 {
font-family: arial;
font-size: 12pt;
font-weight: bold;
text-decoration: underline;
}
感谢您的帮助和建议
When I have the following in css, the underlines under the links in IE and Firefox are "doubled". I have seen that some websites have the same font-family, same font-size, in bold and underlines are not doubled. How can I make the underline only one line and not two (1px vs 2px). A simple css that would work in all browsers (if possible). I know I could use border-bottom to solve the problem but I don't really like the idea.
.a_12 {
font-family: arial;
font-size: 12pt;
font-weight: bold;
text-decoration: underline;
}
Thank you for your help and suggestions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您无法使用 CSS 控制浏览器如何呈现文本下划线。如果您确实需要这种程度的控制,那么使用底部边框也没什么坏处。
You cannot control how browsers render their text underlines using CSS. If you really need that level of control, it doesn't hurt to use a bottom border.
尝试使用此属性:
border-width: 1px
或使用border-bottom
属性try to use this property:
border-width: 1px
or play withborder-bottom
property其他几篇文章中建议的
border-bottom
技术的替代方法是使用inset
box-shadow
,如下所示:省略 < code>color 参数默认为文本颜色。
An alternative to the
border-bottom
technique suggested in several other posts is to use aninset
box-shadow
, like so:Leaving out the
color
parameter defaults to the text color.