gpt4 book ai didi

css - 替换 DIV 中的内容 - 仅限 CSS

转载 作者:太空宇宙 更新时间:2023-11-04 12:26:31 24 4
gpt4 key购买 nike

我有一个表格,我想在其中替换 TD 中的文本,但它目前只是向其中添加文本。有没有办法只用 CSS 替换文本?下面的示例将在 TD 中显示“Some new stuffText here”,但我希望它仅显示“Some new stuff”。

<table>
<tr>
<td data-text="Some new stuff">Text here</td>
</tr>
</table>

CSS:

table td:before { 
content: attr(data-text);
}

JSFiddle

最佳答案

像这样使用:

td[data-text]{
font-size: 0;/*hide the text inside td*/
}
table td:before {
content: attr(data-text);
font-size: 16px;/*show the text of content*/
}

demo

关于css - 替换 DIV 中的内容 - 仅限 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27978224/

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