博客列表 >实例演示绝对定位与固定定位,并分析异同

实例演示绝对定位与固定定位,并分析异同

杨雨辰
杨雨辰原创
2022年08月06日 04:16:09460浏览

绝对定位与固定定位,两者区别

  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. <div class="box paremt">
  11. <div class="box child one">child-1:相对定位</div>
  12. <div class="box child two">child-2:绝对定位</div>
  13. <div class="box child three">child-3:固定定位</div>
  14. </div>
  15. <style>
  16. html {
  17. height: 2000px;
  18. border: red solid 2px;
  19. /* position: relative; */
  20. }
  21. body {
  22. height: 500px;
  23. border: #000 solid 2px;
  24. /* position: relative; */
  25. }
  26. .box {
  27. border: 1px solid #000;
  28. }
  29. .paremt {
  30. background-color: pink;
  31. width: 400px;
  32. height: 400px;
  33. /* position: relative; */
  34. }
  35. .box.child {
  36. padding: 20px;
  37. }
  38. /* 相对定位relative top向下偏移 left向右偏移 visibility:hidden隐藏 display:noen删除 */
  39. .box.child.one {
  40. background-color: yellow;
  41. position: relative;
  42. top: 30px;
  43. left: 30px;
  44. visibility: hidden;
  45. display: none;
  46. /* z-index: -1; */
  47. }
  48. /* 绝对定位absolute :相对于父级(组先级)可定位属性relative 进行定位 只有第一屏展示*/
  49. .box.child.two {
  50. background-color: beige;
  51. position: absolute;
  52. right: 0px;
  53. bottom: 0px;
  54. }
  55. /* 固定定位fixed :相对于视口进行定位 多屏展示*/
  56. .box.child.three {
  57. background-color: blue;
  58. position: fixed;
  59. top: 202px;
  60. }
  61. </style>
  62. </body>
  63. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议