I have encountered a <div class="clear"></div> at many places, but I am not aware why is it done? Can someone brief me on this, why it is used in css? This is the CSS:
div.clear {
clear:both;
}
|
|
The height of an element is determined by its child elements (unless it is explicitly set). E.g.:
The height of A is determined by where the lower border of its child C is. Now, floating elements do not count towards the height of their parents, they're taken out of the regular flow:
The A element is collapsed to a minimal height, because its two children are floated. Clearing elements are introduced to restore the correct height:
The D element is a zero-height element with the The often better solution to introducing extra HTML elements is to set A to |
|||||||||
|
|
It is to clear out floating styles. |
|||
|
To sum it up, it's like telling the browser to not allow anything (i.e., any element be it a div, span, anchor, table etc) either on the left or on the right of the previous element. This will make the next element move to the next line. |
|||
|
|
|
The Most common problems we face when we write the code with float based layouts is that the parent div container doesn't expand to the height of the child floating elements. The typical solution to fix this is by adding an element with clear float after the floating elements or adding a clearfix to the parent div. I am giving you some two good examples for better understanding about clearing floats :- http://webdesignerwall.com/tutorials/css-clearing-floats-with-overflow |
|||
|
|