What is the difference
<br style="clear:both;"/>
vs
<div style="clear:both;"/>
??
Also, I thought
<div style="clear:both;"/>
is a good way of clearing, but is
<div style="clear:both;"> </div>
a proper way?
|
2
|
|||||||||||
|
|
|
The difference is which other style attributes you inherit. Of course one inherits from Typically But often (e.g. with the ubiquitous [UPDATE] For closing tags, use Thanks to commentors Sebastian Celis and ephemient for the "closing tag" correction. |
||||||||||||
|
|
|
Well, there is no difference, depending on inherited styles. This links says some more, and recommends : http://www.positioniseverything.net/easyclearing.html |
||
|
|
|
|
If you're writing (valid) XHTML you don't need to use the closing tag, but self closing div tags don't work in all browsers, so you should still use it. ie your example:
This is valid XHTML (see html vs xhtml) but doesn't work in all browsers, so you should stick with the above:
also, For what it's worth the |
||||||||
|
|
|
This is what I always use:
And where I need a clearing:
You may also be interested in self-clearing containers: http://www.positioniseverything.net/easyclearing.html EDIT: Added "overflow:hidden" per the suggestion from another answer poster. |
||||
|
|
|
The only difference that I can think of here is that But In my opinion, |
||
|
|
|
|
This is the style that I use for clearing:
Usage:
This will not take up any extra space in the page as the height is zero. Internet Explorer has a strange idea that the content of each element has to be at least one character high, and another strange idea that each element should be as high as it's content. Using |
|||
|
|
|
You do need to be careful about the / on the tag. I had problems with the slash on the <script> tag terminated by <script language="javascript" src="MyScripts.js" /> way. Although, most xml compliant parsers would accept both. <script> has to be terminated by </script> |
||
|
|
|
|
.clear { clear: both; font-size: 0px; line-height: 0px; height: 0px; overflow:hidden; } Usage "br" sometimes has side-effects in Opera and IE browsers, so you should avoid using it |
||
|
|
|
|
|
||||
|
|
|
|
|||
|
|
|
|
All methods are bad. Use CSS to change the appearance of your page. There are many methods to accomplish the same with CSS. Such as giving "overflow: hidden;" on the parent element. |
|||
|
|
|
|
You could also use.. with added CSS rules it can do the job, and it serves this purpose. |
||
|