CSS 在 :p seudo-element 的内容中选择 SVG

CSS select SVG within content of the :pseudo-element

提问人:Sevi 提问时间:10/30/2023 最后编辑:Jason AllerSevi 更新时间:10/31/2023 访问量:43

问:

div:before
{
    content: url(path_to_my_svg);
}

有没有办法选择 :p seudo 元素内容中的 SVG? 喜欢:

div:before svg
{
    ...
}
CSS SVG 伪元素

评论

5赞 Robert Longson 10/30/2023
目前尚不清楚您的目标是什么。显而易见的答案是否定的,但也许如果你解释这个问题,我们可以建议另一种方法。
1赞 Danny '365CSI' Engelman 10/30/2023
url(...)被视为外部图像,因此 CSS 选择器将不起作用。您可以使用我编写的 Web 组件来加载外部 SVG - 内联它 - 并应用 CSS: dev.to/dannyengelman/...<load-file>

答: 暂无答案