Created
March 11, 2013 22:13
-
-
Save blackwatertepes/5138356 to your computer and use it in GitHub Desktop.
Layout Drill: Right-hand Navigation
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
.container { | |
/* | |
If you have a block-level element of a certain width, margin: 0 auto; | |
will how you center it inside its parent container. | |
See: http://bluerobot.com/web/css/center1.html | |
*/ | |
margin: 0 auto; | |
width: 720px; | |
} | |
h2 { | |
margin-top: 0; | |
} | |
nav { | |
padding-left: 20px; | |
width: 100px; | |
float: right; | |
} | |
nav ul { | |
list-style: none; | |
padding: 0; | |
margin: 0; | |
} | |
.content { | |
border-right: 2px solid #ccc; | |
padding-right: 20px; | |
float: left; | |
width: 576px; | |
} | |
.footer { | |
border-top: 2px solid #ccc; | |
padding-top: 10px; | |
width: 718px; | |
float: left; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment