mpadded-011-ref.html (663B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Test mpadded</title> 5 <style type="text/css"> 6 div#bigsquare { 7 position: absolute; 8 width: 100px; 9 height: 100px; 10 background: blue; 11 } 12 13 div#smallsquare { 14 position:absolute; 15 width: 20px; 16 height: 20px; 17 left: 20px; 18 top: 60px; 19 background: red; 20 } 21 /*left = lspace = 20px; 22 top = heightBig - voffset - heightSmall; 23 = 50 + 20 - 10 24 = 60px */ 25 </style> 26 </head> 27 <body> 28 <div id="bigsquare"> 29 <div id="smallsquare"> 30 </div> 31 </div> 32 </body> 33 <html>