Skip to content

Instantly share code, notes, and snippets.

@simplyniceweb
Created June 4, 2017 04:04
Show Gist options
  • Save simplyniceweb/e2f2f3b6f99fac8d906ad723bb4e297f to your computer and use it in GitHub Desktop.
Save simplyniceweb/e2f2f3b6f99fac8d906ad723bb4e297f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
body, html {
margin: 0;
padding: 0;
}
#wrapper {
width: 100%;
height: auto;
background-color: white;
}
.header {
width: 100%;
height: 100px;
background-color: blue;
}
.gap {
width: 100%;
height: 50px;
}
</style>
</head>
<body>
<div id="wrapper">
<div class="header"></div>
<div class="gap"></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment