Skip to content

Instantly share code, notes, and snippets.

@internoma
Created January 6, 2013 11:06
Show Gist options
  • Save internoma/4466614 to your computer and use it in GitHub Desktop.
Save internoma/4466614 to your computer and use it in GitHub Desktop.
Soporte para img SVG
.svg_support {
content: url(../img/imagenSvg.svg);
}
<div id="logo">
<img id="imagenSvg" src="img/imagenSvg.png" width="280" height="128" alt="">
</div>
if (document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Image", "1.1")) {
$('#imagenSvg').addClass("svg_support");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment