mpadded-1-ref.html 649 B

12345678910111213141516171819202122232425262728293031323334
  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. div#smallsquare {
  13. position:absolute;
  14. width: 20px;
  15. height: 20px;
  16. left: 20px;
  17. top: 10px;
  18. background: red;
  19. }
  20. /*left = lspace = 20px;
  21. top = heightBig - voffset - heightSmall;
  22. = 50 - 30 - 10
  23. = 10px */
  24. </style>
  25. </head>
  26. <body>
  27. <div id="bigsquare">
  28. <div id="smallsquare">
  29. </div>
  30. </div>
  31. </body>
  32. <html>