Created
September 17, 2012 11:04
-
-
Save maxhoffmann/3736712 to your computer and use it in GitHub Desktop.
Perfect Page Layout
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
| /** | |
| * Perfect Page Layout | |
| */ | |
| * { | |
| box-sizing: border-box; | |
| } | |
| html { | |
| margin: 0; | |
| height: 100%; | |
| max-height: 100%; | |
| } | |
| body { | |
| margin: 0; | |
| height: 100%; | |
| } | |
| div { | |
| background: #eee; | |
| height: 66%; | |
| width: 33%; | |
| padding: 1%; | |
| margin-left: 11.11%; | |
| margin-top: 11.11%; | |
| } |
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
| <div>Text</div> |
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
| {"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment