I was wondering if you could create a fallback when using unicode characters. See I got following css:
.icon-check:after { content:'\2714'; color: green; } and one would have no support for this character, is there a way to just print 'yes' or something?
For fonts there it's easy , just like p{font-family:"Times New Roman", Times, serif;}. But for the content attribute, there seems no way to create such a fallback.
N.B. I know there other possibilities like Font Awesome, Glyphicons and similar but I am just interested if there is a fallback.