Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
<html>
<head>
<link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com">
<style>
#scroll {
height: 100px;
}
#contain {
height: 5px;
background-color: gray;
padding: 0 0 10px;
border-width: 0 0 10px;
border-style: solid;
border-color: #333;
}
#sticky {
height: 5px;
background-color: black;
}
</style>
</head>
<body>
<div id="scroll">
<div id="contain">
<div id="sticky"></div>
</div>
</div>
</body>
</html>