在a:选择器之前通过CSS缩放SVG图标

时间:2014-11-19 14:44:55

标签: css svg

如何将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>

1 个答案:

答案 0 :(得分:0)

像这样:

Fiddle with your scaled image

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;
}