doc_layoutHelpers.html (463B)
1 <!doctype html> 2 <meta charset=utf-8> 3 <title> Layout Helpers </title> 4 5 <style> 6 html { 7 height: 300%; 8 width: 300%; 9 } 10 div#some { 11 position: absolute; 12 background: black; 13 width: 2px; 14 height: 2px; 15 } 16 div#other { 17 position: absolute; 18 background: red; 19 width: 2px; 20 height: 300px; 21 } 22 iframe { 23 position: absolute; 24 width: 40px; 25 height: 40px; 26 border: 0; 27 } 28 </style> 29 30 <div id=some></div> 31 <div id="other"></div>