I need to have a complex graphic scale to 100% of the width of its container.
Here's my progress so far: http://jsfiddle.net/yT9YK/1/
<svg
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 100 100"
preserveAspectRatio="xMinYMin">
I've tried various settings for preserveAspectRatio and an example I reference (here: How to make a <svg> element expand or contract to its parent container?) has the viewBox set to "0 0 1 1" which doesn't work with my example.
Thanks!