Created
March 22, 2013 07:54
-
-
Save larrybotha/5219645 to your computer and use it in GitHub Desktop.
A method for serving .svg images with a fallback for lte IE8
This file contains 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
<!--[if lte IE 8]> | |
<a href="..."><img src="your/file.png" alt="Your alt text" ></a> | |
<![endif]--> | |
<!--[if gt IE 8]> | |
<a href="..."><img src="your/file.svg" alt="Your alt text" ></a> | |
<![endif]--> | |
<!--[if !IE]> --> | |
<a href="..."><img src="your/file.svg" alt="Your alt text" ></a> | |
<!-- <![endif]--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment