Skip to content

Instantly share code, notes, and snippets.

Created June 25, 2012 13:09
Show Gist options
  • Save anonymous/2988474 to your computer and use it in GitHub Desktop.
Save anonymous/2988474 to your computer and use it in GitHub Desktop.
100% height DIV
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>100%</title>
<style type="text/css">
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
body, html { margin:0; padding:0; height:100%; }
section { background:pink; height:100%; width:25%; padding:10px;}
</style>
</head>
<body>
<section>
i am 100% of the viewport
</section>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment