Created
July 16, 2016 05:31
-
-
Save peterramsing/d3ba8502730471691f73361f0490a185 to your computer and use it in GitHub Desktop.
Example of Overscroll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
I would like the change the html background color of the website I created using Wix. I tried adding what you had in your example but doesn't seem to work. Do you know that is the exact custom code that I should add if I use Wix to create my website, please? Thanks much!
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
Perfect, thank you