I've been trying to get a simple SVG rectangle to work as a background in IE9 or FF4 and neither is working for me. Here's my code:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
<div style="height:99px;background-image: url('bar.svg')"></div>
<iframe src="bar.svg" height="99px"></iframe>
</body>
</html>

The iframe shows the graphic but the div does not. Any ideas where I may be going wrong?

I found a working example here: But I can't make it work myself :( It's been driving me crazy.

Thanks for any help.

link|improve this question

Can you post code or a demo of this page in action? The code looks fine to me (but I'd add quotes url('foo') and change background to background-image). – Blender Mar 23 '11 at 18:11
Unfortunately, I don't have access to a web server. But I've used the above css for png images and it works fine. – user169867 Mar 23 '11 at 18:18
Agree with blender. I suspect the missing quotes around the URL are what is biting you. – Rozwel Mar 23 '11 at 18:20
I've modified the style as suggested but the result is the same. – user169867 Mar 23 '11 at 18:23
2  
@Rozwel, @Blender: Quotes are not required for the url accessor. This site gives an example of using an SVG image as a CSS background: alistapart.com/d/… – Evan Mulawski Mar 23 '11 at 18:25
show 2 more comments
feedback

3 Answers

up vote 2 down vote accepted

Thanks everyone for the help. It actually was a web server problem where the wrong MIME type for SVG was being served & that made the browsers fail to render correctly.

Here's what fixed it for me.

1st I switched from VS 2010's built-in web server to IIS Express. Then in my web config I added:

<system.webServer>
    <staticContent>
      <mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
    </staticContent>
</system.webServer>

Now everything works correctly.

link|improve this answer
Thanks! This was exactly my problem. – Pandincus Jun 26 '11 at 4:43
feedback

Does this jsfiddle work for you?

http://jsfiddle.net/B3mnk/embedded/result/

fwiw, I've added a background size to make it nice 'n big.

link|improve this answer
Yes it does. I starting to think the problem is actually not with the code but w/ Visual Studio 2010. I can run the pages locally or on-line, but if I try to run them in VS only the iframe works... very strange. – user169867 Mar 23 '11 at 18:46
I'm afraid I know nothing of Visual Studio 2010. If you run them in VS, what browser is being used? Is it something built-in? – Matijs Mar 23 '11 at 19:09
feedback

Your Answer

 
or
required, but never shown

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