欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

定位与定位元素

程序员文章站 2022-05-01 21:51:43
...

定位与定位元素

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>定位与定位元素</title>
  8. </head>
  9. <body>
  10. <!-- 文档流:显示顺序和书写顺序一致 -->
  11. <!-- position:static -->
  12. <div class="box parent">
  13. <div class="box child first"></div>
  14. <div class="box child"></div>
  15. </div>
  16. </body>
  17. </html>
  18. <style>
  19. body {
  20. border: 1p solid #000;
  21. }
  22. .box {
  23. border: 1px solid #000;
  24. width: 300px;
  25. height: 400px;
  26. }
  27. .box.parent {
  28. /* 设置定位参考父级/包含块 */
  29. position: relative;
  30. }
  31. .box.child.first {
  32. background-color: lightgreen;
  33. /*1. 相对定位 */
  34. position: relative;
  35. top: 30px;
  36. left: 30px;
  37. /* 2.绝对定位 */
  38. position: absolute;
  39. /* position: fixed; */
  40. /* 相对定位:相对自身,在文档流中,绝对定位:相对包含块不在文档流中 */
  41. /* 绝对定位,不再相对于自身,而是相对于它的包含块 */
  42. /* 它有两个包含块(父级),.parent body,而能充当绝对定位包含块的元素,必须是“定位元素 */
  43. /* 如果决定定位元素,一直向上,找不到可定位的父级元素,就相对body */
  44. }
  45. .box.child {
  46. width: 150px;
  47. height: 150px;
  48. background-color: yellow;
  49. }
  50. </style>