Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

An HTML <body> element can only contain block elements such as <p>. If I declare an inline element such as <span> to be display: block using CSS does that make the following HTML well-formed?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  <head>
    <title>Title</title>
  </head>
  <body>
    <span style="display: block;">Hi!</span>
  </body>
</html>
share|improve this question
1  
You can always use validator.w3.org to check – Kane Mar 22 '10 at 8:33
Try avoid terms like "well-formed" with HTML. Well-formedness is an XML concept. As XML, your sample is well-formed regardless of the value of the "style" attribute. "Valid" or "Conforming" are appropriate terms for measuring the correctness of HTML. - And CSS never changes the validity of HTML. – Alohci Mar 22 '10 at 9:19
Maybe so, but he is specifying an XHTML-strict DTD there, so technically it IS xml – Marc B Mar 22 '10 at 15:14

2 Answers

up vote 4 down vote accepted

<span> is an inline element and not a valid direct child of <body>. The CSS display attribute does not change that.

share|improve this answer

Did you check to see if it validated (it doesn't)? The specifications for XHTML and HTML only apply to themselves, they don't cross boundaries with CSS specifications much. Thus, there won't be anywhere in the definition that checks the value of the style attribute for a certain CSS property in order to validate a document.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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