rectangles.html 923 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0"?>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <title>Rectangles</title>
  5. <style type="text/css">
  6. div {
  7. position: absolute;
  8. margin: 0;
  9. border: 0;
  10. padding: 0;
  11. }
  12. #r1 {
  13. background-color: blue;
  14. left: 10px;
  15. top: 10px;
  16. width: 100px;
  17. height: 50px;
  18. }
  19. #r2 {
  20. background-color: red;
  21. left: 10.9px;
  22. top: 10.1px;
  23. width: 48.666666667px;
  24. height: 49.333333333px;
  25. }
  26. #r3 {
  27. background-color: yellow;
  28. left: 60px;
  29. top: 10px;
  30. width: 50px;
  31. height: 25px;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div id="r1">r1</div>
  37. <div id="r2">r2</div>
  38. <div id="r3">r3</div>
  39. </body>
  40. </html>