This is really weird, whenever I open it on Fir开发者_如何转开发efox the style isn't applying. Everything looks fine in my css and even the link to it.
Here's the test page:
http://loreto.byethost13.com/testing/
Anyone has an idea about the problem?
In your CSS, just before your commented reset code, you have this:
a{text-decoration:none; color:#333;"}
Removing the quotation mark should fix the problem.
Line 51 of your stylesheet:
a{text-decoration:none; color:#333;"}
There is an unexpected double quote which is breaking the CSS.
If you open up your stylesheet in Firebug, you'll see that it's a big mess.
I think you may have some encoding issues here, make sure you have:
@charset "utf-8";
at the top of your CSS File.
精彩评论