position

CSS position属性用于指定一个元素在文档中的定位方式。

定位类型:

  • 定位元素(positioned element)是其计算后位置属性为 relative, absolute, fixed 或 sticky 的一个元素(换句话说,除static以外的任何东西)。
    • 相对定位元素(relatively positioned element)是计算后位置属性为 relative 的元素。
    • 绝对定位元素(absolutely positioned element)是计算后位置属性为 absolute 或 fixed 的元素。
    • 粘性定位元素(stickily positioned element)是计算后位置属性为 sticky 的元素。

取值:

  • static:该关键字指定元素使用正常的布局行为,即元素在文档常规流中当前的布局位置。此时 top, right, bottom, left 和 z-index 属性无效。
  • relative:该关键字下,元素先放置在未添加定位时的位置,再在不改变页面布局的前提下调整元素位置(因此会在此元素未添加定位时所在位置留下空白)。top, right, bottom, left等调整元素相对于初始位置的偏移量。
  • absolute:元素会被移出正常文档流,并不为元素预留空间,通过指定元素相对于最近的非 static 定位祖先元素的偏移,来确定元素位置。绝对定位的元素可以设置外边距(margins),且不会与其他边距合并。
  • fixed:元素会被移出正常文档流,并不为元素预留空间,而是通过指定元素相对于屏幕视口(viewport)的位置来指定元素位置。元素的位置在屏幕滚动时不会改变。
  • sticky:元素根据正常文档流进行定位,然后相对它的最近滚动祖先(nearest scrolling ancestor)和 containing block (最近块级祖先 nearest block-level ancestor),包括table-related元素,基于top, right, bottom, 和 left的值进行偏移。偏移值不会影响任何其他元素的位置。
  1. /* relative 实例*/
  2. .div-outer {
  3. width: 300px;
  4. height: 400px;
  5. background-color: lightblue;
  6. }
  7. .div-inner1 {
  8. width: 100px;
  9. height: 100px;
  10. background-color: darkred;
  11. color: white;
  12. margin: 10px;
  13. display: inline-block;
  14. }
  15. .div-inner2 {
  16. width: 100px;
  17. height: 100px;
  18. background-color: darkgreen;
  19. color: white;
  20. margin: 10px;
  21. display: inline-block;
  22. position: relative;
  23. top: 30px;
  24. right: 100px;
  25. }
  26. .div-inner3 {
  27. width: 100px;
  28. height: 100px;
  29. background-color: darkred;
  30. color: white;
  31. margin: 10px;
  32. display: inline-block;
  33. }
  34. /* absolute 实例*/
  35. .div-inner2 {
  36. width: 100px;
  37. height: 100px;
  38. background-color: darkgreen;
  39. color: white;
  40. display: inline-block;
  41. position: absolute;
  42. top: 100px;
  43. left: 20px;
  44. }
  45. /* fixed 实例*/
  46. .div-inner2 {
  47. width: 100px;
  48. height: 100px;
  49. background-color: darkgreen;
  50. color: white;
  51. display: inline-block;
  52. position: fixed;
  53. top: 200px;
  54. right: 20px;
  55. }
  56. /* sticky 实例*/
  57. .div-inner1 {
  58. width: 100px;
  59. height: 100px;
  60. background-color: darkred;
  61. color: white;
  62. margin: 10px;
  63. position: sticky;
  64. top: 0;
  65. }
  66. .div-inner2 {
  67. width: 100px;
  68. height: 1000px;
  69. background-color: darkgreen;
  70. color: white;
  71. margin: 10px;
  72. }
  73. .div-inner3 {
  74. width: 100px;
  75. height: 100px;
  76. background-color: darkred;
  77. color: white;
  78. margin: 10px;
  79. position: sticky;
  80. bottom: 10px;
  81. }