将 SVG 合并到伪元素中:CSS 内容属性解决方案
可以通过引用来使用 SVG 图像作为伪元素的内容使用 url() 的 SVG 文件函数:
#mydiv::before { content: url(path/to/your.svg); display: block; width: 22px; height: 10px; margin: 10px 5px 0 10px; }
或者,您可以使用数据 URI 将 SVG 直接插入到 CSS 中:
#test::before { content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='50' r='40' stroke='black' stroke-width='2' fill='red'/%3E%3Cpolyline points='20,20 40,25 60,40 80,120 120,140 200,180'>
以上是如何在 CSS 伪元素中使用 SVG?的详细内容。更多信息请关注PHP中文网其他相关文章!