Is it possible to scale the svg element (and all i's contents accordingly) without having clipping? I've tried scaling the svg to 100% width and height however the contents are being clipped.
The svg is generated via d3.js
HTML
<svg>
<circle cx="50" cy="50" r="50" fill="red"></circle>
</svg>
CSS
svg {
width: 100%;
}