inset-box-shadow-scroll.html (443B)
1 <!DOCTYPE html> 2 <link rel="help" href="http://www.w3.org/TR/css3-background/#the-box-shadow"> 3 <link rel="match" href="inset-box-shadow-scroll-ref.html"/> 4 <style> 5 #target { 6 width: 200px; 7 height: 100px; 8 overflow: scroll; 9 background-color: white; 10 box-shadow: 10px 10px green inset; 11 padding: 10px; 12 } 13 #inner { 14 height: 120px; 15 } 16 </style> 17 <div id="target"> 18 <div id="inner"> 19 Passes if green inset shadow is visible. 20 </div> 21 </div>