博客列表 >box-sizing和定位

box-sizing和定位

辰辰
辰辰原创
2021年03月30日 15:38:23518浏览

box-sizing

  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. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. /* padding和border计算在width,height里 */
  13. box-sizing: border-box;
  14. }
  15. html {
  16. font-size: 10px;
  17. }
  18. .box {
  19. width: 20rem;
  20. height: 20rem;
  21. border: #000 solid 2px;
  22. background-color: lightblue;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="box">box</div>
  28. </body>
  29. </html>

定位

  • 相对定位
    相对于它在文档流中的原始位置进行定位
  • 绝对定位
    绝对定位元素脱离了文档流

  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. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. .box {
  15. /* position: relative; */
  16. /* position: absolute; */
  17. top: 5em;
  18. left: 10em;
  19. background-color: lightskyblue;
  20. width: 20rem;
  21. height: 4rem;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="box">box</div>
  27. <p>Hello</p>
  28. </body>
  29. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议