CSS SVG frame and viewBox size

| Tag css  svg 

SVG frame/viewport size

width and height properties define the frame/viewport size.

content area size with viewBox

viewBox defines the area for image content.

viewBox is like the pan and zoom tools, we position the image in the frame/viewport with minX, minY, the image is also scaled based on the frame’s size.

<svg viewBox="minX minY width height" width="100%" height="300px">
</svg>

Prev     Next