文本下划线是属性吗?
我有一个样式表,其中有一个 text-underline:none
属性,它真的是 CSS 属性吗?
I got a stylesheet which has a text-underline:none
property, is it really a CSS property?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,它不是有效的 CSS 属性。相反,您可以使用
text-decoration: none
。text-underline
属性经常出现在 Microsoft Word 生成的 CSS 中。No, it isn't a valid CSS property. Instead, you can use
text-decoration: none
.The
text-underline
property is often found in CSS generated by Microsoft Word.