Skip to content

Instantly share code, notes, and snippets.

@stijnj
Created December 19, 2012 21:18
Show Gist options
  • Save stijnj/4340585 to your computer and use it in GitHub Desktop.
Save stijnj/4340585 to your computer and use it in GitHub Desktop.
Floats: clearfix
/**
* Floats: clearfix
*/
div {
width: 200px;
border: 1px solid black;
}
span {
float: left;
width: 33%;
text-align: center;
padding: 5px 0;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1;
}
<div>
<span>first</span>
<span>second</span>
<span>third</span>
</div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment