Tuesday, June 23, 2009

5 Handy tips to fix space beneath floated elements

When two elements are floated in a div, chances are parent element no longer contains it because the float is removed from the flow. Here I am sharing five quick tips to fix this problem.

Tip 1

Remind the containing block to wrap its children using the overflow property. Example code where #inner is floated:

<div id="outer">
<div id="inner"><p>big floating contents</p></div>
<p>Main Content</p></div>


Set the outer's style to:

#outer {

overflow: auto;
height: 1%;

}


Tip 2

In the CSS:

.clearfix:after {content: "."; display: block; height: 0; font-size: 0; clear: both; visibility: hidden;}

.clearfix {display: inline-block;}
/* Hides from IE5/Mac \*/
* html .clearfix {height: 1px;}
.clearfix {display: block;}
/* End hide from IE5/Mac */


XHTML:

<div class="clearfix">
<div class="floater">This text won't extend past the bottom of the "clearfix" div.</div>
</div>


No non-semantic XHTML. Just some clever CSS rules.

Tip 3

<div class="spacer"></div>
div.spacer {clear: both;}


This should work, and as DIV has no intrinsic height you can style it to have as much or as little vertical space as you like. But, IE5 and IE6 have several nasty bugs that can appear when a DIV is used to clear floats. They appear only if various conditions are met, so they may or may not occur on your page. Also, Gecko does not render empty divs, so this will not always work. Sticking a non-breaking space in there, or a comment, may help, but not always.

Tip 4

br {clear: both;}


This is safe and reliable, but BR also carries some default behaviour of a certain amount of vertical space that you cannot alter. You can always create classes of BR's, and each could behave differently.

The following are good styles to apply to a br or div element to make it take up no space when clearing:

.clearfloat {clear:both; height:0; font-size: 1px; line-height: 0px;}


Tip 5

CSS:

.newBFC {overflow: hidden;
_overflow: visible;
_overflow-x:hidden;
_height: 0;
}

/*\*//*/
.newBFC {display: inline-block;}
/**/


XHTML:

<div class="newBFC">
<div class="floater">
This text won't extend past the bottom of the "newBFC" div.
</div>
</div>


This solution creates a new block formatting context in all browsers which should assure a similar display across the board.

Do you have any opinion, leave a comment.

Source:http://css-discuss.incutio.com

Related Posts :





5 comments :

Brooke said...

sometimes the easiest solution is to just float the container element.

Unknown said...

You can also float everything within the site and this becomes a non-issue. Set up your wrapper with a width and margin:0 auto to center it and setup your footer as the last div in the page. Put a clear:both on your footer and float everything else inside the wrapper. The clear on the footer fixes everything while the floated nature of the rest of the content holds it all together.

Jubal said...

I am surprised IE5/Mac (well, specifically the Mac version of IE5) is still being accounted for in the CSS examples here. The browser share, again for that particular browser version on the Mac, seems to have dropped to 0.05% or smaller....

Anonymous said...

Here is an updated clearfix I created. I don't really care about IE-Mac, so thought it needed a refreshing of the times.

.outter {
*display: inline-block; /* IE */
}
.outter:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}

Congstar said...

Sorry for my english, but i found this tip via google. Thx a lot, this had fix my problems

Post a Comment

 

Copyright © 2009 - tutorialfeed.org