JSFiddle - React, Tailwind, and code Playground
by Kearnan Kelly
HTML
<div class="resizeme">
<svg
width="100%"
height="100%"
viewBox="0 0 200 200"
preserveAspectRatio="xMinYMid meet"
style="background-color:green"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<text
x="0"
y="100"
font-size="75"
fill="black"
>█Resize This█</text>
</svg>
</div>
CSS
.resizeme {
resize: both;
margin: 0;
padding: 0;
height: 200px;
width: 200px;
background-color: lightblue;
overflow: hidden;
}