Created
March 14, 2015 15:55
-
-
Save fnky/1fef34a10a22cea17a8f to your computer and use it in GitHub Desktop.
Simple container max-width
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 class="container"></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
body { | |
margin: 0; | |
background-color: gray; | |
} | |
.container { | |
max-width: 1100px; | |
height: 800px; | |
margin: 0 auto; | |
background-color: blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment