gpt4 book ai didi

css - SVG:使用 CSS 设置 内容

转载 作者:行者123 更新时间:2023-12-04 08:55:06 25 4
gpt4 key购买 nike

我可以吗

<svg>
<text></text>
</svg>

svg text {
content: 'a';
font-family: 'Glyphicon Halflings';
}

?

好像 :before:after伪元素不可用,但我很高兴让我的内容由 css 设置。我可以吗?

最佳答案

不可能使用纯 CSS。需要使用简单的JS:

function changeMyText()
{
document.getElementById('MyText').textContent = "new text";
}

并为您的 SVG 文本创建 ID:
<svg>
<text id="MyText"></text>
</svg>

关于css - SVG:使用 CSS 设置 <text> 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31608129/

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