1

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?

VXp
  • 11,598
  • 6
  • 31
  • 46
zemiacsik
  • 41
  • 1
  • 6

1 Answers1

3

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>
Alex Slipknot
  • 2,439
  • 1
  • 18
  • 26