如何将SVG图标缩放为CSS的一部分:选择器之前?
示例:
a[href$=".xml"]:before {
content: url(http://public.xxx.com/html9.svg);
width: 20px;
height: 20px;
}
<a href="foo.xml">foo.xml</a>
答案 0 :(得分:0)
像这样:
CSS的相关更改:
a[href$=".xml"]:before {
content: '';
background-image: url(http://public.xxx.com/html9.svg);
background-size: contain;
width: 20px;
height: 20px;
display: inline-block;
}