提问人:Sevi 提问时间:10/30/2023 最后编辑:Jason AllerSevi 更新时间:10/31/2023 访问量:43
CSS 在 :p seudo-element 的内容中选择 SVG
CSS select SVG within content of the :pseudo-element
问:
div:before
{
content: url(path_to_my_svg);
}
有没有办法选择 :p seudo 元素内容中的 SVG? 喜欢:
div:before svg
{
...
}
答: 暂无答案
上一个:椭圆 伪元素阴影 css
下一个:将伪元素应用于阴影元素
评论
url(...)
被视为外部图像,因此 CSS 选择器将不起作用。您可以使用我编写的 Web 组件来加载外部 SVG - 内联它 - 并应用 CSS: dev.to/dannyengelman/...<load-file>