CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
JavaScript Jungle
[Solved] Is it bad practice to use 'line break' tags in HTML?
Rugg
Permalink to comment
#
July 2011
Is it bad practice to use 'line break' tags in HTML? Thanks.
TT_Mark
Permalink to comment
#
July 2011
Singular line breaks are fine.
e.g.
This is a sentence.
<br />
And another.
Multiple line breaks to add padding are not
Here is a line of text
<br />
<br />
<br />
Here is another line
joshuanhibbert
Permalink to comment
#
July 2011
I would recommend trying to avoid them. It will cause less headaches for you down the track if you control your spacing with CSS.
Rugg
Permalink to comment
#
July 2011
ok thanks
Add a Comment
e.g.
Multiple line breaks to add padding are not