gpt4 book ai didi

css - 如何在不删除 :before pseudo element css 内的文本的情况下隐藏标签上的文本

转载 作者:太空宇宙 更新时间:2023-11-03 23:15:44 25 4
gpt4 key购买 nike

我想将文本隐藏在标签内,但将文本保留在 before 伪元素内,不更改 html 且不使用 javascript

<a href="#">Text to be hidden</a>

CSS

a:before{
content: "I need to show up"
}

这会清除所有文本

a {
text-indent: -999em;
display: inline-block;
}

fiddle https://jsfiddle.net/5wrs1ft1/

最佳答案

我可以让它工作! https://jsfiddle.net/5wrs1ft1/4/

a {
font-size: 0;
color: transparent;
}

a:before {
font-size: 14px;
color: black;
content: "I need to show up"
}

!重要!这不会在每个浏览器上工作,它在 Firefox 上的 chrome 上工作正常,我会等待更好的答案

关于css - 如何在不删除 :before pseudo element css 内的文本的情况下隐藏标签上的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30647534/

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