0👍
You could use SVG to scale the text:
.container {
display: flex;
justify-content: center;
resize: both;
overflow: scroll;
border: solid 1px;
width: 200px;
height: 100px;
}
<div class="container">
<svg viewBox="0 0 80 20">
<text x="2" y="15">Hello world</text>
</svg>
</div>
- [Vuejs]-Laravel vue js can't find data ID
- [Vuejs]-Debugging node/prime vue webapp in vs code not hitting break points
Source:stackexchange.com