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