html – 为什么text-decoration:none在p里面不起作用?

html – 为什么text-decoration:none在p里面不起作用?,第1张

概述我有以下 HTML和CSS片段,我想要“!”不要强调,但确实如此.我究竟做错了什么? p { color:red; text-decoration: underline; font-size: 1.2em;}span.none { text-decoration: none;} <p class="p">Click the thumb<span class=" 我有以下 HTML和CSS片段,我想要“!”不要强调,但确实如此.我究竟做错了什么?

p {  color:red;   text-decoration:     underline;   Font-size: 1.2em;}span.none {  text-decoration: none;}
<p >Click the thumb<span >!</span></p>
解决方法 添加display:inline-block;到span.none类

p {  color:red;   text-decoration:     underline;   Font-size: 1.2em;}span.none {  text-decoration: none;  display:inline-block;}
<p >Click the thumb<span >!</span></p>
总结

以上是内存溢出为你收集整理的html – 为什么text-decoration:none在p里面不起作用?全部内容,希望文章能够帮你解决html – 为什么text-decoration:none在p里面不起作用?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1047420.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存