clip-001-ref.html (448B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Test Reference</title> 4 <style> 5 #target { 6 width: 100px; 7 height: 100px; 8 background: red; 9 /* For this simple case, hidden and clip are equivalent */ 10 overflow: hidden; 11 } 12 13 #container { 14 overflow: auto; 15 height: 300px; 16 } 17 18 #fill { 19 background: blue; 20 height: 5000px; 21 } 22 </style> 23 <div id="container"> 24 <div id="target"> 25 <div id="fill"></div> 26 </div> 27 </div>