vote up 3 vote down star

My guess is that <br> might be inline and that <hr> might be block. But I don't really have a clue...

flag

4 Answers

vote up 7 vote down check

<hr/> is block. And <br/> is inline.

link|flag
Hm, didn't understand that last part... – Svish Sep 2 at 18:12
The support for <br style="clear:left;" /> is removed. It is intended to break, and nothing else :) – Jonathan Sampson Sep 2 at 18:13
Aha. So should put that clear on something else then? – Svish Sep 2 at 18:37
No, don't use a clear. It defeats the purpose of using the <br/> :) – Jonathan Sampson Sep 2 at 18:38
Huh? I was meaning that if using clear, it should be used on something else than <br>. Cause clear is still supported on other elements I hope? Related to float, etc... – Svish Sep 2 at 22:06
show 2 more comments
vote up 1 vote down

The HR element is defined to be element of block. It’s also being displayed in its own line like any other block element. Thus HR is a block element.

The BR element is defined to be element of special and that is defined to be inline. It’s also not being displayed in its own like like a block element, but just creating a line break. Thus BR is an inline element.

link|flag
vote up 0 vote down

BR is an inline element, and has been deprecated in XHTML 2 in favor of LINE. (All academic at this point, of course...)

HR was a block element, but was deprecated in HTML 4.01 and is not part of the XHTML 1.0 Strict DTD.

link|flag
3  
HR is part of strict... – Daniel A. White Sep 2 at 18:27
-1 The current working draft of XHTML 2 has no line element, HR is not deprecated in HTML 4.01 and is also part of XHTML 1.0 Strict! – Gumbo Sep 2 at 18:40
I stand corrected... that's what I get for double-checking something other than the actual DTDs. – richardtallent Sep 3 at 8:20
vote up 1 vote down

According to the HTML 4.0 Strict DTD:

<HR /> is a block-level element and <BR /> is an inline element.

All the block-level elements are defined in the DTD thus:

<!ENTITY % block
     "P | %heading; | %list; | %preformatted; | DL | DIV | NOSCRIPT |
      BLOCKQUOTE | FORM | HR | TABLE | FIELDSET | ADDRESS">


<!ENTITY % heading "H1|H2|H3|H4|H5|H6">

<!ENTITY % list "UL | OL">

<!ENTITY % preformatted "PRE">

The rest are inline by default. Of course, a BR does force a line-break so acts similar to a block level element, but that doesn't mean it is.

link|flag

Your Answer

Get an OpenID
or

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