Last active
December 13, 2015 16:58
-
-
Save fjaguero/4943741 to your computer and use it in GitHub Desktop.
HTML: SVG responsive images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<object data="http://www.website.com/responsive/img/logo.svg" type="image/svg+xml" class="logo"> | |
<!--[if lte IE 8 ]--> | |
<img src="http://www.website.com/responsive/img/logo.gif" alt="Image Title"> | |
<!--![endif]--> | |
</object> | |
<!-- Edit .svg file and erase width and height properties so it can automatically scale with viewport --> | |
<!-- | |
CSS: | |
img, object { | |
max-width: 100%; | |
} | |
--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment