Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here's a page with an SVG graphic I designed. http://s383324595.onlinehome.us/HTML5-1 It looks and acts properly in Chrome (and Canary and Chromium), but the graphic itself is a tiny, square in Safari 5.1, and requires scrolling to see the whole image. What's wrong? Moreover, it looks like the graphic is on the offset on the X axis in Firefox. How can I fix that?

share|improve this question

1 Answer

up vote 2 down vote accepted

Remove the width and height attributes on the root <svg> element, then tweak the CSS for the embed element so that it gets the width and height you want.

share|improve this answer
What about the viewBox attribute? Does that one matter at all? – Jules Mazur Dec 22 '11 at 12:09
Disregard the above comment. It worked perfectly, thanks very much! – Jules Mazur Dec 22 '11 at 12:17

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.