1147834-top-right-ref.html 483 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Overconstrained relative positioning</title>
  6. <style>
  7. .test {
  8. border: 1px solid black;
  9. height: 200px;
  10. width: 400px;
  11. }
  12. #inner1 {
  13. position: relative;
  14. left: 40px;
  15. top: 0px;
  16. height: 180px;
  17. width: 360px;
  18. background-color: teal;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="test">
  24. <div id="inner1"></div>
  25. </div>
  26. </body>
  27. </html>