Last active
August 29, 2015 13:55
-
-
Save ianlintner-wf/8733934 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Embedded SVG</title> | |
</head> | |
<body> | |
<h1>Embedded SVG</h1> | |
<a href="http://www.sitepoint.com/add-svg-to-web-page/">Source of this stuff.</a> | |
<!-- SVG code --> | |
<svg width="300px" height="300px" xmlns="http://www.w3.org/2000/svg"> | |
<text x="10" y="50" font-size="30">My SVG</text> | |
</svg> | |
<object type="image/svg+xml" data="image.svg">Your browser does not support SVG</object> | |
<embed type="image/svg+xml" src="image.svg" /> | |
<img src="image.svg" /> | |
</body> | |
</html> | |
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
Which Should You Use? | |
In most circumstances, I recommend using the <object> tag to display SVG images. It feels a little unnatural, but it’s the most reliable method if you want to provide dynamic effects. | |
For images without interaction, the <img> tag or a CSS background can be used. | |
Inline SVGs or iframes are possibly options for some projects, but it’s best to avoid <embed>. | |
Coming soon: further SVG articles including CSS and scripting… |
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
#myelement | |
{ | |
background-image: url(image.svg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment