left-2-ref.html (813B)
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 width: 100px; 10 height: 100px; 11 border: 1px solid black; 12 white-space: nowrap; 13 } 14 #scroll div { 15 display: inline-block; 16 } 17 #contain { 18 width: 100%; 19 height: 10px; 20 background-color: gray; 21 } 22 #sticky { 23 position: relative; 24 left: 10px; 25 width: 10px; 26 height: 10px; 27 background-color: black; 28 } 29 </style> 30 <body> 31 <div id="scroll"> 32 <div id="contain"> 33 <div id="sticky"></div> 34 </div> 35 </div> 36 </body> 37 </html>