Blogger Information
Blog 17
fans 1
comment 0
visits 14811
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
盒模型常用属性,元素大小的计算,元素垂直对齐
邱世家的博客
Original
684 people have browsed it

盒模型(Box Model)常用属性

属性 释义 注意
content 元素内容
margin 外边距 有四个值按照上右下左的顺序
padding 内边距 有四个值按照上右下左的顺序
border 边框
  • 写一个盒子添加样式
    1. <style>
    2. .box {
    3. width: 200px;
    4. height: 200px;
    5. /* 显示内边距 */
    6. background-color: teal;
    7. background-clip: content-box;
    8. margin: 10px;
    9. padding: 10px;
    10. border: 3px solid tomato;
    11. }
    12. </style>
    13. </head>
    14. <body>
    15. <div class="box"></div>
    16. </body>
  • 看下盒子模型简图
  1. 盒子模型 包含内容 内/外边距以及边框
  2. 元素框的总宽度 = 元素(element)的width + padding的左边距和右边距的值 + margin的左边距和右边距的值 + border的左右宽度;也就是宽246
  3. 元素框的总高度 = 元素(element)的height + padding的上下边距的值 + margin的上下边距的值 + border的上下宽度。也就是高246

    注意一个问题:

    在html文档中,内容区的大小实际上是覆盖到了padding,也就是显示的时候是到了边框
    1. <script>
    2. const box = document.querySelector(".box");
    3. // 1. 内容区大小
    4. // 大小 = width / height + padding
    5. console.log(box.clientWidth);
    6. console.log(box.clientHeight);
    7. </script>
  • 看下图紫色框

  • 当我们把padding的值修改到50 会发生什么变化呢? 看图

  • 显而易见—-显示的内容占据的空间变大了(由原来的220X220变成了300X300)也就是把盒子撑开了。
    如果有多个会导致布局计算困难,所以要用box-sizing 来重新计算盒子大小,就是告诉浏览器你设置宽度要包含padding+border的值
box-sizing content-box 默认值,以内容区为准
box-sizing border-box 元素大小以边框为准(包含padding和border)
  1. <style>
  2. .box {
  3. width: 200px;
  4. height: 200px;
  5. background-color: teal;
  6. /* 显示内边距 */
  7. background-clip: content-box;
  8. margin: 10px;
  9. padding: 50px;
  10. border: 3px solid tomato;
  11. /* 告诉浏览器这个盒子的宽/高要包含padding和border
  12. (宽度200=内容区宽度+左右padding宽度+左右border宽度) */
  13. box-sizing: border-box;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div class="box"></div>
  19. <!-- <div class="box1"></div> -->
  20. </body>
  21. <script>
  22. const box = document.querySelector(".box");
  23. // 1. 内容区大小
  24. // 大小 = width / height + padding
  25. console.log(box.clientWidth);
  26. console.log(box.clientHeight);
  27. </script>

  • 此时我们的盒子的宽度:94+100+6+20=220(内容区+内边距+边框+外边距),符合开始给他设定的样式宽度200,就不会影响布局。

    css 外边距合并(叠加)

  • 两个上下方向相邻的元素框垂直相遇,边距会合并,合并后的外边距的高度等于两个发生合并的外边距中较高的那个边距值,
    1. <style>
    2. .box {
    3. width: 200px;
    4. height: 200px;
    5. background-color: teal;
    6. /* 显示内边距 */
    7. /* background-clip: content-box; */
    8. margin-bottom: 10px;
    9. padding: 10px;
    10. border: 3px solid tomato;
    11. /* 告诉浏览器这个盒子的宽/高要包含padding和border
    12. (宽度200=内容区宽度+左右padding宽度+左右border宽度) */
    13. /* box-sizing: border-box; */
    14. }
    15. .box1 {
    16. width: 200px;
    17. height: 200px;
    18. background-color: teal;
    19. /* background-clip: content-box; */
    20. margin-top: 50px;
    21. padding: 10px;
    22. border: 3px solid tomato;
    23. }
    24. </style>
    25. </head>
    26. <body>
    27. <div class="box"></div>
    28. <div class="box1"></div>
    29. </body>

  • 第二种情况
    1. .box.parent {
    2. width: 200px;
    3. height: 200px;
    4. background-color: tomato;
    5. margin-top: 20px;
    6. }
    7. .son {
    8. width: 100px;
    9. height: 100px;
    10. background-color: yellowgreen;
    11. margin-top: 10px;
    12. }

-总结: 用一个图来表示

元素居中(margin:auto)

  • 垂直居中通过绝对定位来实现,让当前元素绝对定位的上下文充满整个父级容器,从左上角开始到右下角结束。
  • 实现在页面中居中
    1. <style>
    2. body {
    3. background-color: lightgrey;
    4. }
    5. div {
    6. width: 400px;
    7. height: 350px;
    8. box-sizing: border-box;
    9. text-align: center;
    10. background-color: #ccc;
    11. border: 2px solid bisque;
    12. border-radius: 10px;
    13. position: absolute;
    14. left: 0;
    15. top: 0;
    16. right: 0;
    17. bottom: 0;
    18. margin: auto;
    19. }
    20. form input {
    21. width: 260px;
    22. height: 30px;
    23. margin-top: 10px;
    24. margin-left: 10px;
    25. padding-left: 10px;
    26. border-radius: 5px;
    27. border: none;
    28. }
    29. form input:focus {
    30. background-color: coral;
    31. }
    32. img {
    33. width: 90px;
    34. height: 90px;
    35. margin-top: 50px;
    36. }
    37. button {
    38. width: 100px;
    39. height: 40px;
    40. border: none;
    41. border-radius: 5px;
    42. margin-top: 15px;
    43. }
    44. button:hover {
    45. font-size: 1.2rem;
    46. cursor: pointer;
    47. color: lime;
    48. background-color: mediumorchid;
    49. }
    50. </style>
    51. </head>
    52. <body>
    53. <div>
    54. <img src="a.jpg" alt="" />
    55. <form action="">
    56. <p>
    57. <label>账号:<input type="text" placeholder="请输入" /></label>
    58. </p>
    59. <p>
    60. <label>密码:<input type="password" placeholder="******" /></label>
    61. </p>
    62. <button>登陆</button>
    63. </form>
    64. </div>
    65. </body>

总结:

  • 了解了盒子的基本知识
  • 尝试了一下做一个小布局,发现很多东西实际用起来跟想的不一样,没有一个明确的思维。
Correcting teacher:WJWJ

Correction status:qualified

Teacher's comments:整体来讲,总结的很不错!
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post