doc_inspector_infobar.html (607B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 6 <style> 7 body { 8 width: 100%; 9 height: 100%; 10 } 11 12 div { 13 position: absolute; 14 height: 100px; 15 width: 500px; 16 } 17 18 #bottom { 19 bottom: 0px; 20 } 21 22 #vertical { 23 height: 100%; 24 } 25 26 #farbottom { 27 top: 2000px; 28 background: red; 29 } 30 31 #abovetop { 32 top: -123px; 33 }"; 34 </style> 35 </head> 36 <body> 37 <div id="abovetop"></div> 38 <div id="vertical"></div> 39 <div id="top" class="class1 class2"></div> 40 <div id="bottom"></div> 41 <div id="farbottom"></div> 42 </body> 43 </html>