It seems that the css file is being rendered and losing spaces between multiple classes defined in the css.
For example:
.Class1 .Class2 { color:red;}
Becomes:
.Class1.Class2 { color:red;}
The spaces are being lost between the two class identifiers and making the pages render differentIy.. I cant figure out why.
I think IE6 is doing the same thing but is able to read this just fine for some reason. I'm not sure what the problem is and it could possibly be something else affecting it.
Any ideas on what could be causing this?
Thanks in advance!
For example:
.Class1 .Class2 { color:red;}
Becomes:
.Class1.Class2 { color:red;}
The spaces are being lost between the two class identifiers and making the pages render differentIy.. I cant figure out why.
I think IE6 is doing the same thing but is able to read this just fine for some reason. I'm not sure what the problem is and it could possibly be something else affecting it.
Any ideas on what could be causing this?
Thanks in advance!
Comment