css – 是否有一种方法使用SVG作为伪元素中的内容:before或:after

前端之家收集整理的这篇文章主要介绍了css – 是否有一种方法使用SVG作为伪元素中的内容:before或:after前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在一些选择的元素之前放置一些SVG图像。我使用JQuery,但那是不相干的。我想有:前元素为:
#mydiv:before {
    content:"<svg.. code here</svg>";
    display:block;
    width:22px;
    height:10px;
    margin:10px 5px 0 10px;
  }

如果我这样做,如上所示,它只是显示字符串。我检查规格,似乎有一些限制,什么内容可以是。有这样的限制吗?只有内容css与我的问题相关。

解决方法

抱歉,不, the spec says,content属性支持生成的文本内容,没有html,svg的东西或标签

是的你可以!只是测试这个,它的工作伟大,这是真棒!它仍然不能使用html,但它与svgs。

在我的index.html我有:

<div id="test" style="content: url(test.svg); width: 200px; height: 200px;"></div>

我的test.svg看起来像这样:

<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
   <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
   <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" style="fill:none;stroke:black;stroke-width:3" />
</svg>

猜你在找的CSS相关文章