博客列表 >box-sizing功能、相对定位与绝对定位

box-sizing功能、相对定位与绝对定位

L.E
L.E原创
2021年03月28日 20:40:53551浏览

一.box-sizing 功能

  • 示图

  • html 代码

    1. <!DOCTYPE html>
    2. <html lang="zh_CN">
    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>box-sizing</title>
    8. <style>
    9. /* 初始化代码 */
    10. * {
    11. margin: 0;
    12. padding: 0;
    13. /* 考虑将w3c的标准盒子转为IE的盒子 */
    14. /* 将盒子的padding和border计算在width,height内 */
    15. box-sizing: border-box;
    16. /* 再转为标准盒子 */
    17. /* box-sizing: content-box; */
    18. /* 背景裁切到内容区 */
    19. /* background-clip: content-box; */
    20. }
    21. /* :root === html */
    22. :root {
    23. /* font-size: 16px; */
    24. font-size: 10px;
    25. }
    26. /* em,rem */
    27. /* em:根据元素的上下文来确定它的值 默认一个em等于16像素*/
    28. /* rem:根据根元素的自豪来设置 */
    29. .box {
    30. font-size: 20px;
    31. /* width: 200px; */
    32. /* width: 12.5em; */
    33. width: 20rem;
    34. /* height: 200px; */
    35. /* height: 12.5em; */
    36. height: 20rem;
    37. border: 2px solid;
    38. background-color: lightgreen;
    39. padding: 1rem;
    40. margin: 1rem;
    41. }
    42. </style>
    43. </head>
    44. <body>
    45. <div class="box">box</div>
    46. </body>
    47. </html>

二.相对定位与绝对定位

  1. <!DOCTYPE html>
  2. <html lang="zh_CN">
  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. <style>
  9. /* html {
  10. border: 1px solid;
  11. } */
  12. .box {
  13. background-color: lightcoral;
  14. width: 20em;
  15. height: 20em;
  16. /* 默认:静态定位,就是没有定位 */
  17. /* position: static; */
  18. /* 相对定位:自动的转为定位元素 */
  19. /* 定位元素:只要这个元素上有非static的定位属性,就是定位元素 */
  20. /* position: relative; */
  21. /* 只要是定位元素,定位偏移量有效 */
  22. /* 相对于它在文档流中的原始位置进行定位 */
  23. /* top: 3em;
  24. left: 5em; */
  25. /* 绝对定位 */
  26. position: absolute;
  27. /* 绝对定位元素脱离了文档流 */
  28. /* 相对于它在文档流中的原始位置进行定位 */
  29. top: 3em;
  30. left: 5em;
  31. }
  32. .parent {
  33. border: 1px solid;
  34. /* 转为定位元素,做为绝对定位元素的定位父级/定位参考/定位包含块 */
  35. position: relative;
  36. top: 3em;
  37. left: 4em;
  38. min-height: 30em;
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <div class="parent">
  44. <div class="box"></div>
  45. </div>
  46. </body>
  47. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议