Skip to content

Instantly share code, notes, and snippets.

Created December 13, 2012 04:52
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 anonymous/4274099 to your computer and use it in GitHub Desktop.
Save anonymous/4274099 to your computer and use it in GitHub Desktop.
A CodePen by Anonymous.
<div id="main">
<div id="sidebar">
<div id="right"></div>
<div id="left"></div>
</div>
</div>
html, body {
height: 100%;
}
#main {
height: 100%;
background-color: #f0f0f0;
position: relative;
}
#sidebar {
position: relative;
background-color: #111;
margin-left: 200px;
height: 100%;
}
#right, #left {
float: right;
}
#right {
width: 300px;
background-color: #ff0000;
height: 100%;
position: relative;
}
#left {
background-color: #fff000;
margin: 20px;
height: 40px;
width: 100%;
right: 300px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment