Stretch font vertically in React Native

Viewed 763

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

Stretched Image

1 Answers

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 !

Related