I need to display ticks and crosses in a web page. They do not have HTML character entities and I am struggling to find a cross-browser-compatible way to display them. I am currently using
in the css and "\xFE" or "\xFD" in the HTML. This works for i.e. but not Firefox, which displays different characters. Copying and pasting the webpage into, eg, Thunderbird also gives undesireable results.
Has anybody cracked this one?
["]As soon as we started programming, we found to our surprise that it wasn't as easy to get programs right as we had thought. Debugging had to be discovered. I can remember the exact instant when I realized that a large part of my life from then on was going to be spent in finding mistakes in my own programs.["]
--Maur
Code:
.tick { font-family: WingDings; color: green; }
.cross { font-family: WingDings; color: red; }
Has anybody cracked this one?
["]As soon as we started programming, we found to our surprise that it wasn't as easy to get programs right as we had thought. Debugging had to be discovered. I can remember the exact instant when I realized that a large part of my life from then on was going to be spent in finding mistakes in my own programs.["]
--Maur