Skip to content

Instantly share code, notes, and snippets.

@blackfalcon
Last active August 29, 2015 13:57
Show Gist options
  • Save blackfalcon/9594316 to your computer and use it in GitHub Desktop.
Save blackfalcon/9594316 to your computer and use it in GitHub Desktop.
Clearfix example
<div class="box-set">
<div class="box">Box 1</div>
<div class="box">Box 2</div>
<div class="box">Box 3</div>
</div>
// ----
// Sass (v3.3.3)
// Compass (v1.0.0.alpha.18)
// Stipe (v0.0.6.4)
// ----
@import "stipe/manifest";
.box-set {
background: #e8eae9;
//float: left;
//width: 100%;
//overflow: auto;
//@extend %clearfix;
}
.box {
background: #8ec63f;
color: white;
text-align: center;
line-height: 150px;
float: left;
margin: 10px;
width: 200px;
//box-shadow: 0px 30px 10px orange;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment