vote up 4 vote down star

break line tag is not working in firefox, neither in chrome. When i see the source of my page i get:

<p>Zugang zu Testaccount:</br></br>peter petrelli </br></br>sein Standardpwd.</br></br>peter.heroes.com</p>

However when i do view selected source, i get:

<p>Zugang zu Testaccount: peter petrelli  sein Standardpwd. peter.heroes.com</p>

It seems firefox is filtering break line tags out.

It works in IE7 fine.

flag

60% accept rate
1  
8 duplicate answers so far... – leppie Oct 1 '08 at 16:54
Not sure why this question is being voted down. It's kind of basic but it's still valid and it might help someone else in the future. – Outlaw Programmer Oct 1 '08 at 16:58
i agree w/ outlaw, and i upvoted for that reason – Kip Oct 1 '08 at 17:28

8 Answers

vote up 44 vote down check

You're looking for <br /> instead of </br>

Self closing tags such as br have the slash at the end of the tag.

Here are the other self-closing tags in XHTML:

link|flag
vote up 0 vote down

It should just be <br>.

link|flag
<br> will work, but is a legacy tag. You should use <br/> instead. – pearcewg Oct 1 '08 at 16:39
Depends on your DTD (Document Type Definition), pearcewg. It's perfectly valid in HTML 4.01 for instance. – roosteronacid Oct 1 '08 at 21:40
vote up 5 vote down

Maybe because the br tag should be:

<br/>

?

link|flag
vote up 0 vote down

You want <BR> or <BR />, not </BR>

link|flag
You mean <br> or <br /> - the latest standards are to use lower case for tags. – Ken Ray Oct 1 '08 at 16:55
vote up 2 vote down

That's because </br> is an invalid tag. What you want is <br />.

link|flag
vote up 6 vote down

It should be <br> or <br /> not </br>

link|flag
vote up 4 vote down

IE7 is more forgiving of incorrect syntax in quirksmode.

Instead of <br> or </br> it should be <br />

link|flag
vote up 1 vote down


should probably be used only if you are writing XHTML. If you use validator.w3.org to validate the following as HTML 4.01:

<html>
<head>
<title></title>
</head>
<body>
<p>
<br />
</p>
</body>
</html>

This warning is generated:

Line 8, Column 3: NET-enabling start-tag requires SHORTTAG YES.

<br />

The sequence can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag '). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.

link|flag

Your Answer

Get an OpenID
or

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