Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Should I use <img>, <object>, or <embed> for loading SVG files into a page in a way similar to loading a jpg, gif or png?

What is the code for each to ensure it works as well as possible? (I'm seeing references to including the mimetype or pointing to fallback SVG renderers in my research and not seeing a good state of the art reference).

Assume I am checking for SVG support with Modernizr and falling back (probably doing a replacement with a plain <img> tag)for non SVG-capable browsers.

share|improve this question

1 Answer

up vote 29 down vote accepted

I can recommend the SVG Primer (published by the W3C), which covers this topic: http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html#SVG_in_HTML

If you use <object> then you get raster fallback for free:

<object data="your.svg" type="image/svg+xml">
  <img src="yourfallback.jpg" />
</object>
share|improve this answer
1  
What's the right way to set a size? Do I include height and width atributes, or do I use CSS? – artlung Dec 20 '10 at 12:26
2  
Using css is fine, or setting the size on the embedding element (that is: either of iframe, embed, object, img) - what the latter does is it may avoid flash-of-unstyled-content before the stylesheet that defines the size is loaded. Also make sure the svg has a viewBox attribute, and remove the width/height attributes from the svg root element. That will give you the best crossbrowser behavior in my experience. – Erik Dahlström Dec 21 '10 at 11:57
3  
This method will always download the raster file. This answer ensures that the fallback is only requested on legacy IE browsers. – Larry Oct 12 '12 at 12:22
2  
Note that the above does not work with the Adobe SVG Plug-in. But, you can get it all to work (modern browsers + ASV+MSIE) if you add <param name="src" value="your.svg" /> inside the <object> tag. I have spent a very long time trying to figure out how to do all that, and I think I've finally got it. – Christopher Schultz Dec 5 '12 at 21:15
3  
What is the better approach in 2013? Has anything changed since 2010? – Alexandr Kurilin Mar 27 at 1:35
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.