Skip to content

Instantly share code, notes, and snippets.

@fjaguero
Last active December 13, 2015 16:58
Show Gist options
  • Save fjaguero/4943741 to your computer and use it in GitHub Desktop.
Save fjaguero/4943741 to your computer and use it in GitHub Desktop.
HTML: SVG responsive images
<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