TestFlow_BodyDivAbsolute.html 544 B

1234567891011121314151617181920212223242526
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  5. <title>Project1</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <style>
  8. body {
  9. position: relative;
  10. width: 100px;
  11. padding: 23px;
  12. overflow: auto;
  13. }
  14. #Div1 {
  15. position: absolute;
  16. margin: 2px;
  17. border: 1px;
  18. padding: 4px;
  19. left: 140px;
  20. width: 30px;
  21. height: 20px;
  22. </style
  23. </head>
  24. <body>
  25. <div id="Div1">Lorem</div></body>
  26. </html>