Created
April 1, 2014 05:11
-
-
Save euyuil/9908080 to your computer and use it in GitHub Desktop.
CSS: fixed-width sidebar with fluid-width content container.
This file contains 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
<div id="content-wrapper"> | |
<div id="content"> | |
<!-- blah blah blah --> | |
</div> | |
</div> | |
<div id="sidebar"> | |
<ul> | |
<!-- blah blah blah --> | |
</ul> | |
</div> |
This file contains 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
#sidebar { | |
width: 200px; /* sidebar width */ | |
float: left; | |
margin-left: -100%; | |
} | |
#content { | |
margin-left: 200px; /* sidebar width */ | |
} | |
#content-wrapper { | |
width: 100%; | |
float: left; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment