I have some svg files that specifies width and height as well as viewbox like this:
<svg width="576pt" height="432pt" viewBox="0 0 576 432" > ...
but how to display them in the browser at a size I decide ? I want them smaller and have tried:
<object width="400" data="image.svg"></object>
but then I get visible scrollbars.
It works if I change the svg files to set width and height to "100%" instead, but I want to decide the size in the html regardless of what sizes are used in the svg file. Is this possible ?