372037-1-ref.html (779B)
1 <!DOCTYPE html> 2 3 <style> 4 html, body {margin: 0; padding:5px} 5 </style> 6 7 <div style="position: relative; height: 100px; width: 100px;"> 8 <div style="background: blue; position: absolute; top: 10px; width: 40px; height: 50px;"> 9 </div> 10 </div> 11 12 <div style="position: relative; height: 100px; width: 100px;"> 13 <div style="background: blue; position: fixed; left: 20px; width: 40px; height: 50px;"> 14 </div> 15 </div> 16 17 <div style="overflow: auto; position: relative; height: 100px; width: 100px;"> 18 <div style="background: blue; position: relative; width: 200px; height: 200px;"> 19 </div> 20 </div> 21 22 <div style="overflow: auto; position: relative; height: 100px; width: 100px;"> 23 <div style="background: blue; position: absolute; width: 200px; height: 200px;"> 24 </div> 25 </div>