Skip to content

Instantly share code, notes, and snippets.

@4e4c52
Created November 24, 2015 13:29
Show Gist options
  • Save 4e4c52/29cac8e0d6bc36707695 to your computer and use it in GitHub Desktop.
Save 4e4c52/29cac8e0d6bc36707695 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div id="header">
<h1>Header</h1>
</div>
<div id="container">
<h1>Container</h1>
</div>
<style>
html, body {
margin: 0;
padding: 0;
color: white;
height: 100%;
}
h1 {
margin: 0;
}
#header {
background: green;
height: 90px;
}
#container {
background: blue;
min-height: calc(100% - 90px);
}
</style>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment