Search code examples
htmlpointerstext-size

Increase the height of the triangle html


I want to use this triangle pointer in the font section of my menus. The code is the html triangle pointer is: ◂ (◂)

Using text size tags, I can change the size of the text, but I do not want to spray it and only increase its height. what's the solution?


Solution

  • You can use transform. The following CSS would double the character's height without changing it's width.

    transform: scaleY(2);