I have a following code:
<span style="color: blue;" title="square">◼</span>
The color is properly applied in Chrome, FF, Opera, IE11, but Edge is ignoring it and displaying as black.
Could you give me an advice or this is a bad approach?
I have a following code:
<span style="color: blue;" title="square">◼</span>
The color is properly applied in Chrome, FF, Opera, IE11, but Edge is ignoring it and displaying as black.
Could you give me an advice or this is a bad approach?
According to this answer you can specify font-family to your span to get it work:
<span style="color: blue; font-family: 'Segoe UI Symbol'" title="square">◼</span>