Skip to content

Instantly share code, notes, and snippets.

@daveaseeman
Created July 14, 2015 19:47
Show Gist options
  • Save daveaseeman/71e1d1b0e3ac913d1864 to your computer and use it in GitHub Desktop.
Save daveaseeman/71e1d1b0e3ac913d1864 to your computer and use it in GitHub Desktop.
100% Height Divs
<body>
<div class="container">
<div class="green"></div>
<div class="blue"></div>
<div class="purple"></div>
</div>
</body>
* {
line-height: 0;
}
html {
background: black;
height: 100%
}
body {
background: red;
height: 100%
}
.container {
background: yellow;
height: 100%;
margin: 0 auto;
width: 80%
}
.green {
background: green;
min-height: 100%;
margin: 0 auto;
width: 80%
}
.blue {
background: blue;
min-height: 100%;
margin: 0 auto;
width: 80%
}
.purple {
background: purple;
min-height: 100%;
margin: 0 auto;
width: 80%
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment