Up And Down Arrow Unicode Font Size Issue
I have one of the most strangest problems that I have faced till today. I am trying to show up and down arrow in unicode in HTML. However, they are not same in size and color. This
Solution 1:
You're not using the correct pair of arrows. Use ˅
entity for the corresponding down arrow.
See updated fiddle
<div>˄</div><div>˅</div>
If you're interested in filled arrows
<div>▲</div><div>▼</div>
Solution 2:
Well they are different. Its not a font size issue. http://graphemica.com/%CB%84http://graphemica.com/%E2%8C%84
You should use bootstraps glyphicons http://jsfiddle.net/c9gp9a1w/
<spanclass="glyphicon glyphicon-chevron-up"aria-hidden="true"></span><spanclass="glyphicon glyphicon-chevron-down"aria-hidden="true"></span>
Solution 3:
They are not the matching pair.
˄ matches with ˅. While ⌄ matches with ⌃.
Post a Comment for "Up And Down Arrow Unicode Font Size Issue"