Blogger Information
Blog 5
fans 0
comment 0
visits 4974
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS:box-sizing理解与相对定位与绝对定位理解
逝去
Original
857 people have browsed it

一、理解 box-sizing 功能并实例演示

1、 box-sizing 功能理解

(1)content-box 属性

  • 这是由 CSS2.1 规定的宽度高度行为。
  • 宽度和高度分别应用到元素的内容框。即 w3c 的标准盒子。
  • 在宽度和高度之外绘制元素的内边距和边框。

尺寸计算公式:
width = 内容的宽度
height = 内容的高度

(2)border-box 属性

  • 为元素设定的宽度和高度决定了元素的边框盒。

  • 就是说,为元素指定的任何内边距和边框都将在已设定的宽度和高度内进行绘制。即将盒子的 padding 和 border 计算在 width,height 内。

  • 通过从已设定的宽度和高度分别减去边框和内边距才能得到内容的宽度和高度。

尺寸计算公式:
width = border + padding + 内容的宽度
height = border + padding + 内容的高度

(3)inherit 属性

  • 规定应从父元素继承 box-sizing 属性的值。

2、box-sizing 功能并实例演示

效果图:

content-box

content-box

border-box

border-box

代码实现:

  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>box-sizing</title>
  8. <style>
  9. div {
  10. width: 200px;
  11. height: 200px;
  12. padding: 10px;
  13. border: 5px solid red;
  14. background-color: yellow;
  15. }
  16. .content-box {
  17. box-sizing: content-box;
  18. /* Total width: 200px + (2 * 10px) + (2 * 5px) = 230px
  19. Total height: 200px + (2 * 10px) + (2 * 5px) = 230px
  20. Content box width: 200px
  21. Content box height: 200px */
  22. }
  23. .border-box {
  24. box-sizing: border-box;
  25. /* Total width: 200px
  26. Total height: 200px
  27. Content box width: 200px - (2 * 10px) - (2 * 5px) = 170px
  28. Content box height: 200px - (2 * 10px) - (2 * 5px) = 170px */
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="content-box">Content box</div>
  34. <br />
  35. <div class="border-box">Border box</div>
  36. </body>
  37. </html>

二、理解相对定位与绝对定位,并实例演示他们的区别与联系

1、相对定位与绝对定位理解

(1)static(默认)

  • 默认:静态定位,就是没有定位,也就是按照文档的流式(flow)定位,将元素放到一个合适的地方。

  • 一般来说,我们不需要指明当前元素的定位方式是 static——因为这是默认的定位方式。

  • left,top 属性对 static 没有效果,static 是靠 margin 这些定位的。

(2)relative(相对定位)

  • 在 static 的基础上,如果我想让一个元素在它本来的位置做一些调整(位移),我们可以将该元素定位设置为 relative,同时指定相对位移(利用 top,bottom,left,right)。

  • 相对定位的元素仍然在文档流中,仍然占据着它本来占据的位置空间。

(3)absolute(绝对定位)

  • 如果你想在一个文档(Document)中将一个元素放至指定位置,你可以使用 absolute 来定位,将该元素的 position 设置为 absolute,同时使用 top,bottom,left,right 来定位。

  • 如果没有父元素,位置是相对于 body 来进行的。

  • 绝对定位会使元素从文档流中被删除,结果就是该元素原本占据的空间被其它元素所填充。

(4)fixed(固定定位)

  • fixed 定位的参照物总是当前的文档。利用 fixed 定位,我们很容易让一个 div 定位在浏览器文档的左上,右上等方位。

2、实例演示相对定位与绝对定位的区别与联系

  • 相对定位

  • 相对定位的元素仍然在文档流中,仍然占据着它本来占据的位置空间。

效果图:

相对定位

  • 绝对定位

  • 绝对定位会使元素从文档流中被删除,结果就是该元素原本占据的空间被其它元素所填充。

效果图:

绝对定位

代码实现:

  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. <style>
  9. * {
  10. padding: 0;
  11. margin: 0;
  12. box-sizing: border-box;
  13. }
  14. .box1 {
  15. width: 100px;
  16. height: 100px;
  17. margin: 20px;
  18. border: 2px solid blue;
  19. background-color: red;
  20. }
  21. .box2 {
  22. width: 100px;
  23. height: 100px;
  24. border: 2px solid black;
  25. background-color: yellow;
  26. /* 相对定位 */
  27. /* position: relative; */
  28. /* 绝对定位 */
  29. position: absolute;
  30. top: 20px;
  31. left: 150px;
  32. }
  33. .box3 {
  34. width: 100px;
  35. height: 100px;
  36. margin: 20px;
  37. border: 2px solid blue;
  38. background-color: red;
  39. }
  40. </style>
  41. </head>
  42. <body>
  43. <div class="box1">我是默认定位</div>
  44. <!-- <div class="box2">我是相对定位</div> -->
  45. <div class="box2">我是绝对定位</div>
  46. <div class="box3">我是默认定位</div>
  47. </body>
  48. </html>
Correcting teacher:天蓬老师天蓬老师

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