vote up 1 vote down star

I'm trying to set background colours on a few different elements in an html page, but whenever I apply a doctype declaration the colours get ignored. Other styles seem unaffected. I'm sure I'm being an idiot.

It happens on IE7, FF3 and Chrome. With Strict and Transitional html 4 Doctype. Body and Div backgrounds are affected. A minimal example is below. If you delete the Doctype delcaration, it's rendered in all it's garish glory, with doctype - tedious black and white only.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <style>
    	body{background-color:FF00FF;}
    	.class1{background-color:00FFFF;}
    </style>
</head>
<body>
    <div class="class1">Some Text</div>
</body>
</html>

BTW - I'm not using XHTML because I think I once overheard a conversation in a pub between much cleverer people than myself who said that said you shouldn't declare XML unless the mime types are correctly set on your server. On my cheapo hosting account I can't do that sort of thing easily.

flag

57% accept rate

5 Answers

vote up 4 vote down check

You forgot the # in the color values.

body {
    background-color: #FF00FF;
}
.class1 {
    background-color: #00FFFF;
}
link|flag
Genius! (you, not me!). Thanks. – Andrew M Mar 1 at 13:07
vote up 6 vote down

The reason that the colors are ignored is because the declaration is incorrect. In quirks mode the interpretation is more relaxed, and the colors are accepted eventhough they are incorrect, but in standards compliant mode the declaration has to be correct.

Change FF00FF to #FF00FF, and 00FFFF to #00FFFF.

#FF00FF can also be written in the short form #F0F, and #00FFFF as #0FF.

link|flag
vote up 1 vote down

In CSS you can define colors in RGB or Hex. This is what you did. But Hex-Colors are written like #rrggbb. You missed the #. Seems like when it comes to validation because a doctype is set, then such "almost-correct" color definitions are not interpreted correctly.

link|flag
vote up 0 vote down

Your should allsoo use <style type="text/css"> OR even better, don't use inline styling!

Allways validate your html code here.

link|flag
That was only for this minimal-case example, it's external style sheets in the real thing. – Andrew M Mar 1 at 14:25
vote up 0 vote down

remove the following line

DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org

then it'll be ok,but I don't know why. anyone knows,please contact me at MSN: skinny8306@163.com

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.