Skip to content

Instantly share code, notes, and snippets.

Created March 10, 2012 00:18
Show Gist options
  • Save anonymous/2009425 to your computer and use it in GitHub Desktop.
Save anonymous/2009425 to your computer and use it in GitHub Desktop.
Untitled
#wrapper {
width: 900px;
margin: 0 auto;
position: relative;
background: #999;
}
#content {
width: 500px;
float: right;
height: 500px;
background: blue;
}
#sidebar-wrap {
position: relative;
top: 0;
left: -300px;
width: 300px;
height: 600px;
background: yellow;
}
#sidebar {
position: fixed;
top: 0;
margin-left: -300px;
height: 500px;
width: 300px;
background: red;
}
<div id="wrapper">
<div id="content"></div>
<div id="sidebar-wrap">
<div id="sidebar">
</div>
</div>
</div>
{"view":"split","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment