字段集图例中的 IE7 首字母缩略词下划线
我在字段集/图例内有一个首字母缩略词:
<fieldset>
<legend>
<acronym>foo</acronym>
</legend>
</fieldset>
在 Firefox 中,它会用虚线下划线呈现,以告诉用户如果将鼠标悬停在上面,就会有东西。
IE 下点下划线不显示?
我尝试像这样在 css 中强制它:
style="border-bottom:1px dotted #000000 !important;"
但我似乎无法让它显示出来。有什么想法吗?
I have an acronym inside of a fieldset/legend:
<fieldset>
<legend>
<acronym>foo</acronym>
</legend>
</fieldset>
In Firefox this gets rendered with a dotted underline to signal the user that there is something there if they mouseover it.
In IE the dotted underline doesn't show up?
I tried forcing it in css like this:
style="border-bottom:1px dotted #000000 !important;"
But I can't seem to get it to show up. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将首字母缩略词的显示样式设置为
inline-block
这将使 IE7 显示您在样式中指定的边框。Set the acronym's display style to
inline-block
That will let IE7 show the border you specify in the style.