During some recent browser testing for a web site I'm building, I was faced with IE stripping all the CSS out of my site.

It worked in Firefox (both Mac & PC), Safari and Mac IE, but not PC IE. So what would cause just IE to fail so spectacularly?

Updated 20 Dec 2016: nearly 10 years on, this is also breaks entirely in Safari 10…!

READER DISCOUNTSave $50 on terminal.training

I've published 38 videos for new developers, designers, UX, UI, product owners and anyone who needs to conquer the command line today.

Here's an example of CSS failing entirely in IE.

At the time of writing I can't validate the CSS - because the cause of my problem appears that my CSS is breaking the validator (note that I've tested successfully with a valid CSS file).

The problem boils down to a null character sitting in my CSS. In my original problem it was in the comments in the top of the file causing the entire CSS to fail and work fine in all other browsers.

Firefox does ignore the line with the null character on, so if it was placed before a background colour or font it would ignore that particular line.

In IE's case, it completely ignores the CSS.

A couple of ways you can spot this:

  1. Put the CSS in the head tag of your HTML and use the W3 validator - this will pick up the null character.
  2. View it in Vim - if you can. They will look like ^@. Just remove them.
  3. Use a bit of Perl to spot the bad boy:
$ perl -e '$ctr = 0; while(<>){ $ctr++; chomp; if (/\0/) {print "BAD LINE ($ctr): " . $_ . "\n"}}' YOURFILE.CSS

Remember that other control characters may well have the same effect, but the null character is easy to end up in your CSS if you've pasted something from another app (in my case, I had copied the hex value for a colour from Image Ready CS and pasted in my CSS file).