Skip to content

Instantly share code, notes, and snippets.

@ellcorey
Created August 25, 2015 19:34
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 ellcorey/b2590963bd2f797504e0 to your computer and use it in GitHub Desktop.
Save ellcorey/b2590963bd2f797504e0 to your computer and use it in GitHub Desktop.
jPgepx
<div class="container">
<div class="left-col">
</div>
<div class="right-col">
</div>
</div>
.container {
max-width: 960px;
min-width: 90%;
padding: 20px;
margin: 0 auto;
background-color: #cccccc;
box sizing: border box;
overflow: hidden;
}
.left-col {
width: 50%;
height: 200px;
float: left;
background-color: #2B7F7B;
}
.right-col {
width: 50%;
height: 200px;
float: right;
background-color: #07CCC1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment