1

If I open the below fiddle in Safari on all devices, the cross mark entity is always coloured red.

http://jsfiddle.net/minlare/bgmx2d74/

a {
    color: #333;    
}
a:before {
    content: '\274C';
    color: #333 !important;
}

Is there a way to set the colour on the cross mark entity in Safari?

minlare
  • 2,454
  • 25
  • 46
  • 1
    Is that an emoji thing? How about to use `content:'\00D7';` instead? – Stickers Jul 07 '15 at 14:53
  • @Pangloss Ahh an emoji thing, that would make sense :( Your suggestion would be my next step, however I would rather stick with the cross mark if there is a way to change the colour. – minlare Jul 07 '15 at 14:59
  • If it is emoji, it became to an image I guess, so no way to change color. – Stickers Jul 07 '15 at 15:11
  • TL;DR The solution is to add `\FE0E` to the content. [Updated fiddle](http://jsfiddle.net/bgmx2d74/9/). – Mr Lister Aug 27 '18 at 12:36

0 Answers0