Created
December 2, 2012 21:15
-
-
Save stewartduffy/4191107 to your computer and use it in GitHub Desktop.
A CodePen by Stewart Duffy.
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<title>Bad way...</title> | |
</head> | |
<body> | |
<div class='tall'> | |
<div class='short'> | |
Foo bar baz | |
</div> | |
</div> | |
</body> | |
</html> |
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
html,body{ | |
margin:0px; | |
height:100%; | |
} | |
.tall{ | |
background-color:yellow; | |
min-height:100%; | |
height:100%; | |
padding-top:50px; | |
-moz-box-sizing:border-box; | |
-webkit-box-sizing:border-box; | |
box-sizing:border-box; | |
} | |
.short{ | |
background-color:blue; | |
height:100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment