博客列表 >相对定位,绝对定位,固定定位的区别与分析

相对定位,绝对定位,固定定位的区别与分析

搬砖来学php
搬砖来学php原创
2022年07月12日 17:25:25905浏览
定位元素
static 默认值没有开启元素定位
relative 开启元素的相对定位
absolute 开启元素的绝对定位
fixed 开启元素的固定定位

1.相对定位

当元素的position属性设置为relative时,则开启了元素的相对定位。
当使用了元素的定位,position改为非static的值时,可以通过left top 两个属性来设置元素的偏移

  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>Document</title>
  8. </head>
  9. <style>
  10. .box{
  11. border:1px solid #000
  12. }
  13. .box.parent{
  14. width: 400px;
  15. height: 400px;
  16. background-color: aqua;
  17. }
  18. .box.child {
  19. padding: 20px;
  20. }
  21. .box.child.one{
  22. background-color: lightpink;
  23. }
  24. .box.child.two{
  25. background-color: lightgreen
  26. }
  27. .box.child.three{
  28. background-color: lightseagreen
  29. }
  30. .box.child.one{
  31. position: relative; /* 当使用了元素的定位,position改为非static的值时,可以通过left top 两个属性来设置元素的偏移 */
  32. top: 40px;
  33. left: 50px;
  34. }
  35. </style>
  36. <body>
  37. <div class="box parent">
  38. <div class="box child one">相对定位1</div>
  39. <div class="box child two">绝对定位2</div>
  40. <div class="box child three">固定定位3</div>
  41. </div>
  42. </body>
  43. </html>

1.相对定位的元素不会脱离文档流
2.相对定位是相对于元素在文档流中原来的位置进行定位
3.相对定位不会改变元素的性质,块还是块,内联还是内联

2.(绝对定位)当position属性值设置为absolute时,则开启了元素的绝对定位

  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>Document</title>
  8. </head>
  9. <style>
  10. .box{
  11. border:1px solid #000
  12. }
  13. .box.parent{
  14. width: 400px;
  15. height: 400px;
  16. background-color: aqua;
  17. }
  18. .box.child {
  19. padding: 20px;
  20. }
  21. .box.child.one{
  22. background-color: lightpink;
  23. }
  24. .box.child.two{
  25. background-color: lightgreen
  26. }
  27. .box.child.three{
  28. background-color: lightseagreen
  29. }
  30. .box.child.one{
  31. position: relative; /* 1.(相对定位) 当使用了元素的定位,position改为非static的值时,可以通过left top 两个属性来设置元素的偏移 */
  32. top: 40px;
  33. left: 50px;
  34. }
  35. /* 2.绝对定位 */
  36. .box.child.two{
  37. position: absolute;
  38. }
  39. .box.parent{
  40. position: static; /*把child.two的父级 parent自定义定位属性,转为默认定位 */
  41. position: relative; /*把父级parent属性开启相对定位 */
  42. }
  43. body {
  44. height: 500px;
  45. border: 2px solid blue;
  46. }
  47. .box.child.two {
  48. right: 0;
  49. bottom: 0;
  50. }
  51. /* 如果需要定位在body文档里需要先把body当作父级定位 */
  52. .box.parent {
  53. /* parent转为非定位元素 */
  54. position: static;
  55. }
  56. body {
  57. /* 1.把body 变成可定位元素,当定位父级即可在body里面定位 */
  58. position: relative;
  59. }
  60. /* 假如我们需要定位在html里面需要把body改为非定位元素 */
  61. body {
  62. /* 转为非定位元素 */
  63. position: static;
  64. }
  65. html {
  66. height: 600px;
  67. border: 2px dashed lightseagreen;
  68. }
  69. html {
  70. position: relative; /*把html改为可定位元素 ,当作Body的父级定位,这个时候就可以定位在html的页面中*/
  71. }
  72. </style>
  73. <body>
  74. <div class="box parent">
  75. <div class="box child one">相对定位1</div>
  76. <div class="box child two">绝对定位2</div>
  77. <div class="box child three">固定定位3</div>
  78. </div>
  79. </body>
  80. </html>


1.开启绝对定位,会使元素脱离文档流
2.开启绝对定位以后,如果不设置偏移量,则元素的位置不会发生变化
3.绝对定位是相对于离他最近的开启了定位的祖先元素进行定位的(一般情况,开启了子元素的绝对定位都会同时开启父元素的相对定位)如果所有的祖先元素都没有开启定位,则会相对于浏览器窗口进行定位,代码中显式的层级祖先关系two -> .parent -> body -> html!以上的就是绝对定位

3.固定定位

定定位也是一种绝对定位,它的大部分特点都和绝对定位一样 ,不同的是固定定位永远都会相对于浏览器窗口进行定位 ,固定定位会固定在浏览器窗口某个位置,不会随滚动条滚动,IE6不支持固定定位

  1. 固定定位的值是fixed
  2. ```html
  3. /* 3.固定定位,固定定位的值是fixed 和绝对定位相似不同的是:固定定位永远都会相对于浏览器窗口进行定位
  4. ,固定定位会固定在浏览器窗口某个位置,不会随滚动条滚动 */
  5. .box.child.three {
  6. position: fixed;
  7. right: 0;
  8. bottom: 0;
  9. }
  10. /*页面滚动 */
  11. body {
  12. height: 2000px;
  13. }

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议