I'd like to stretch some font like the below image (only vertically stretch, not horizontally). Is it possible? Or will I have to use an SVG/Image instead.
Thanks
I'd like to stretch some font like the below image (only vertically stretch, not horizontally). Is it possible? Or will I have to use an SVG/Image instead.
Thanks
For vertical stretching, you can use the css transform property and scale it along the Y axis like so
p{
font-size:50px;
transform: scale(1, 5);
}
<p>Some Text</p>
Hope this helps !