I am trying to create an svg containing circles. The size of each circle can change overtime and sometimes it gets bigger than my svg so I'd like to make the overflow visible but somehow it is not working:
HTML:
<svg class="container1" width="100px">
<a class="g-node" xlink:href="#test" transform="translate(445,194)" stroke="black">
<circle r="16.246572566634875" fill="red"></circle>
</a>
</svg>
CSS:
.container1{
overflow: visible !important;
}
JSFiddle: http://jsfiddle.net/LuwWa/
Is there any way to make the overflow visible?
thanks