Is there a way to enlarge an SVG using CSS that exceeds 100% of the original image size? I am currently displaying the SVG in an img
tag and have removed the height and width attributes from the SVG file. I have attempted to adjust the height and width using CSS, but it seems unable to scale beyond 100%. Any suggestions would be highly appreciated, as it appears to be related to the viewbox
that is defined in the SVG.
<img class="map" src="map.svg" alt="Map">
.map{
width: 100vw;
}