gpt4 book ai didi

html - CSS 应用样式除了 :after

转载 作者:行者123 更新时间:2023-11-28 02:22:51 25 4
gpt4 key购买 nike

来自以下 CSS 代码:

p {text-decoration: line-through;}
p:after {text-decoration: none;
content:" text";}

使用 HTML:

<p>abcd</p>

我希望得到以下结果:
abcd 文本

但是我明白了:
abcd 文本

这是为什么,我怎样才能达到我想要的效果?

最佳答案

只需添加display: inline-block;

p {
text-decoration: line-through;
}

p:after {
content: " text";
text-decoration: none;
display: inline-block;
}
<p>abcd</p>

关于html - CSS 应用样式除了 :after,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48106567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com