SVG-Test

Testing removing color attributes from SVG by CSS

by Fiddel

HTML

<a href="#">test</a>

CSS

a {
display:block;
width:100%;
height:130px;    color:red;
position:relative;
background-color:black;
    border:10px solid cyan
}

a:after {
    position:absolute;
    right:30%;
    top:0;
    display:block;
    width:20px;
    height:20px;
	content:url(http://www.adobe.com/inspire-apps/exporting-svg-illustrator-0913/fig11/img/napoleon%20for%20svg%201.svg);
	
	fill:red !important;
	background-color:red;
}

a:before {
    position:absolute;
    left:10px;
    top:50%;
    content:"";
    display:block;
    width:220px;
    height:220px;
	background-image:url(http://www.adobe.com/inspire-apps/exporting-svg-illustrator-0913/fig11/img/napoleon%20for%20svg%201.svg);
	
	fill:cyan !important;
}