如何在元素的伪元素之前添加svg作为内容?

时间:2017-08-15 10:31:57

标签: css css3 svg

我正在尝试在:before伪元素的内容中使用svg。

为此目的,我正在关注这个问题:Is there a way to use SVG as content in a pseudo element :before or :after但我无法使其发挥作用。

我只有一个简单的SVG:

<svg height="100" width="100">
  <circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" />
</svg>

以下是我的尝试:

示例1:在内容属性上插入svg

&#13;
&#13;
#square{
   background-color: green;
   width: 100px;
   height: 100px;
}

#square:before{
   display: block;
   content: url("data:image/svg+xml;charset=UTF-8,<svg height='100' width='100'><circle cx='50' cy='50' r='40' stroke='black' stroke-width='3' fill='red' /></svg>");
   background-size: 28px 28px;
   height: 28px;
   width: 28px;
}
&#13;
<div id="square"></div>
&#13;
&#13;
&#13;

示例2:使用base64编码

&#13;
&#13;
#square{
   background-color: green;
   width: 100px;
   height: 100px;
}

#square:before{
   display: block;
   content: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjEwMCIgd2lkdGg9IjEwMCI+PGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iNDAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMyIgZmlsbD0icmVkIiAvPjwvc3ZnPg==");
   background-size: 28px 28px;
   height: 28px;
   width: 28px;
}
&#13;
<div id="square"></div>
&#13;
&#13;
&#13;

正如您所看到的,任何这些示例都不起作用,所以我确信我遗漏了一些东西。

我做错了什么?

提前致谢!

1 个答案:

答案 0 :(得分:11)

似乎SVG标记需要更多属性。

&#13;
&#13;
#square{
   background-color: green;
   width: 100px;
   height: 100px;
}

#square:before{
   display: block;
   content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100' width='100'><circle cx='50' cy='50' r='40' stroke='black' stroke-width='3' fill='red' /></svg>");
   background-size: 28px 28px;
   height: 28px;
   width: 28px;
}
&#13;
<div id="square"></div>
&#13;
&#13;
&#13;