top-6-ref.html (704B)
1 <!DOCTYPE html> 2 <!-- Any copyright is dedicated to the Public Domain. 3 - http://creativecommons.org/publicdomain/zero/1.0/ --> 4 <html> 5 <head> 6 <link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com"> 7 <style> 8 #scroll { 9 height: 100px; 10 } 11 #contain { 12 height: 5px; 13 background-color: gray; 14 padding: 0 0 10px; 15 border-width: 0 0 10px; 16 border-style: solid; 17 border-color: #333; 18 } 19 #sticky { 20 height: 5px; 21 background-color: black; 22 } 23 </style> 24 </head> 25 <body> 26 <div id="scroll"> 27 <div id="contain"> 28 <div id="sticky"></div> 29 </div> 30 </div> 31 </body> 32 </html>