Created
July 25, 2013 12:22
-
-
Save wpscholar/6079121 to your computer and use it in GitHub Desktop.
Flexible content area with fixed width sidebar.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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