I've been learning about SVG, and this is what I have currently: http://jsfiddle.net/C8d34/1/
This is my SVG code specifically:
<svg width="100%" height="100%">
<circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" />
</svg>
My question is, how comes my SVG doesn't expand to 100% height and width of the light blue area, as this is what I was trying to achieve and expected from my code.