Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mattdsteele
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattdsteele/e019e30d7164fc8132b6 to your computer and use it in GitHub Desktop.
Save mattdsteele/e019e30d7164fc8132b6 to your computer and use it in GitHub Desktop.
A Pen by Matt Steele.
<div class="container">Main Container @ 960px
<div class="row">
<div class="column-4">A Column @ 320px</div>
<div class="column-4">Column @ 320px</div>
<div class="column-4">Column @ 320px</div>
</div>
</div>
* {
box-sizing: border-box;
text-align: center;
padding-top: 30px;
}
.container {
margin: 0 auto;
width: 960px;
background: #ddd;
}
.row {
width: auto;
overflow: auto;
height: 400px;
}
.column-4 {
width: 320px;
height: 300px;
float: left;
background: #888;
padding-right: 30px;
border: 1px solid #fff;
margin: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment