XHTML Strict: br tag inside p tag

15,069

It's not that the br is inside the p, but rather you're not ending the br with the / character. You have <br> in the code, when it should be <br/>. Which is why the validation error is "end tag for "br" omitted", it's telling you that you've not ended the tag correctly with a /.

Note that in HTML4 it's not required to close the br tag with a final slash, but in XHTML it is required as it's a singleton tag.

Share:
15,069
coure2011
Author by

coure2011

Updated on June 23, 2022

Comments

  • coure2011
    coure2011 almost 2 years

    I get lots of validation errors because of <br /> inside <p>. If I remove the br tags then it works fine.

    Why is it creating a problem?

  • Andreas Schuldhaus
    Andreas Schuldhaus about 14 years
    Sorry, didn't see the answer you gave a few seconds earlier than me.
  • HaveAGuess
    HaveAGuess over 12 years
    any idea if IE6 will get confused by <br/> or any other browsers?