Is it sometimes bad to use <BR/> tags?
I ask because some of the first advice my development team gave me was this: Don't use <BR/> ; instead, use styles. But why? Are there negative outcomes when using <BR/> tags?
|
|
The main reason for not using In most cases this means just using different elements, for example There are cases where |
|||||
|
|
I think your development team is refering to Bad use of
Good use of
|
|||||||||
|
|
Generally, There are occasions where it is the proper tag to use, but it is abused often enough that people adopt a "do not use" mentality as to force better semantic thinking. |
|||
|
|
|
What was meant by your team was probably not to use <br>s to split between paragraphs.
is the better way to do that, because you can then easily adjust the spaces between paragraphs through CSS. Other than that, I can not think of anything speaking agains line breaks as such. |
|||
|
|
|
Same concept applies to why we don't use tables for layout - use tables for tables and CSS for layout. Use |
|||
|
|
|
Specifying the layout directly makes it difficult adapting the site for different page sizes or fonts for example. |
|||
|
|
|
|
|||
|
|
|
They are to be used to represent newlines. Nothing more. Not to fill up space like as at the average geocities site. There is however only one case wherein they may be useful for other purposes than putting a newline: to clear the floats.
|
|||||||||||
|
|
I will generally always set appropriate margins and padding on elements using CSS - it's a lot less messy than loads of Probably the only time I would use a Like most things, |
|||
|
|
|
Don't use three or more consecutive Some would say a single |
||||
|
|
|
I try to write my markup in a way that it's easily readable with CSS disabled. If you're just using BRs to add spacing, it's better to use margins and padding. |
|||
|
|
|
They're fine, if used appropriately. For instance, you shouldn't use them in lieu of |
|||
|
|
|
<BR/> tags are really good to use but as we know when you use things too much they look annoying and really makes no sense, so in using <BR/> tags use them sparingly. |
|||
|
|
|
If you do this: You will get diffrent layout on different browsers. Deeper: |
|||
|
|