Reputation: 6249
I used <br/>
in my html code to make a line break.
It worked in explorer but had no influence in firefox.
How do I make a line break which is good for both?
Upvotes: 0
Views: 1014
Reputation: 838236
The correct HTML is <br>
. The self-closing tag <br/>
is used in XHTML.
Upvotes: 5