Is there a way to make ALT symbols vertical on HTML

Greetings

I would like to make this airplane symbol ( ✈︎ )face up
I tried the below HTML code but not working

<p style="writing-mode: vertical-lr;">✈︎</p>

Best Regards

>Solution :

I believe , if you provide width to <p> tag then it should work.

<p style="width: 1%; rotate: 270deg;">✈︎</p>

This worked for me .

Leave a Reply