Sometimes you want two body backgrounds. One for the header and one for the footer. I accidentally discovered that it is possible to style the actual <html> tag.

HTML:

<html xmlns="http://www.w3.org/1999/xhtml">

CSS:

html {background:#000}

Is it OK to style this, or will it cause any problem?

link|improve this question

1  
Yes, but be aware that some UI frameworks (most notably jQuery UI) do not support documents where the HTML or BODY tag has positioning or layout applied via CSS. – Dylan Beattie Feb 1 at 16:28
feedback

3 Answers

up vote 3 down vote accepted

It's completely fine - It's technically OK per W3: http://www.w3.org/TR/CSS21/selector.html#type-selectors and it should produce consistent results.

link|improve this answer
Thanks for answer. Less tags counts and sometimes you want the background to be height to be heigher than the footer div... – Hakan Apr 8 '11 at 5:00
Gotcha - I'll remove my question regarding they "why" of styling the HTML tag. – Dave Apr 8 '11 at 5:25
feedback

Yes, it's OK to style the html tag.

link|improve this answer
Thanks for your answer. :) – Hakan Apr 8 '11 at 5:01
feedback

It is very common practice. Used all the time on many websites including this one.

link|improve this answer
Thanks. Good to know. – Hakan Apr 8 '11 at 5:00
feedback

Your Answer

 
or
required, but never shown

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