Skip to content

Instantly share code, notes, and snippets.

@wpscholar
Created July 25, 2013 12:22
Show Gist options
  • Save wpscholar/6079121 to your computer and use it in GitHub Desktop.
Save wpscholar/6079121 to your computer and use it in GitHub Desktop.
Flexible content area with fixed width sidebar.
.content {
float: left;
margin-right: 300px; /* Must match sidebar width */
padding-right: 20px; /* Gutter width */
}
.sidebar {
float: right;
width: 300px;
margin-left: -100%; /* Won't work without this */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment