使用< abbr>时这些单词带有虚线下划线,悬停光标变为带问号的单词。
我确实设法使用它来改变它。但是,我不确定这是最好的方法,这种方法有什么问题吗?
abbr[Title] { border-bottom: none !important; cursor: default !important;}解决方法 从v40开始firefox switched使用文本修饰来提供下划线和铬将是 doing it that way too.所以你应该更新你的代码,以包括如果你需要支持这些浏览器:
abbr[Title] { border-bottom: none !important; cursor: inherit !important; text-decoration: none !important;}总结
以上是内存溢出为你收集整理的html – 删除由abbr标记引起的下划线全部内容,希望文章能够帮你解决html – 删除由abbr标记引起的下划线所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)