tmp.html 871 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5. <title></title>
  6. <style>
  7. body {
  8. height:1000px;/*让窗体出现滚动条*/
  9. }
  10. .fixed {
  11. position: fixed;
  12. left: 100px;
  13. right: 100px;
  14. top: 100px;
  15. bottom: 100px;
  16. width: auto;
  17. height: auto;
  18. border: 1px solid blue;
  19. }
  20. .absolute {
  21. position: absolute;
  22. left: 100px;
  23. right: 100px;
  24. top: 100px;
  25. bottom: 100px;
  26. width: auto;
  27. height: auto;
  28. border: 1px solid red;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="fixed">fixed定位</div>
  34. <div class="absolute">absolute定位</div>
  35. </body>
  36. </html>