Skip to content

Instantly share code, notes, and snippets.

@peterramsing
Created July 16, 2016 05:31
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterramsing/d3ba8502730471691f73361f0490a185 to your computer and use it in GitHub Desktop.
Save peterramsing/d3ba8502730471691f73361f0490a185 to your computer and use it in GitHub Desktop.
Example of Overscroll
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sticky Footer Example</title>
<style>
* {
margin: 0;
}
html {
font-family: sans-serif;
}
html,
body {
height: 100%;
}
.page-wrap {
min-height: 100%;
margin-bottom: -30px;
background-color: white;
text-align: center;
}
.page-wrap::after {
content: '';
display: block;
}
header {
background-color: #373737;
}
header h1 {
margin: 0 auto;
padding: 10px 0;
text-align: center;
text-transform: uppercase;
color: white;
}
footer {
height: 30px;
text-align: center;
background-color: #373737;
}
footer p {
padding: 5px;
color: white;
}
/* The background stuff */
html {
background-color: #373737;
}
</style>
</head>
<body>
<div class="page-wrap">
<header>
<h1>Intro</h1>
</header>
<h1>This site is for testing!</h1>
<p>Please enjoy the test.</p>
</div>
<footer>
<p>No Copyright...cause that's cool.</p>
</footer>
</body>
</html>
@amarinediary
Copy link

It is possible to use different colors for top and bottom over scroll?

@fulldecent, if you use a gradient as the background color you could get it to work.

Big brain!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment