Blogger Information
Blog 9
fans 0
comment 0
visits 6128
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
box-sizing 的作用-伪类选择器的参数 an+b 的应用-媒体查询:@media 规则
空心菜博客
Original
552 people have browsed it

box-sizing 的作用-伪类选择器的参数 an+b 的应用-媒体查询:@media 规则

一、box-sizing 的作用

1.属性定义及使用说明

box-sizing 属性定义如何计算一个元素的总宽度和总高度,主要设置是否需要加上内边距(padding)和边框等。

例如,假如您需要并排放置两个带边框的框,可通过将 box-sizing 设置为 “border-box”。这样就可以让浏览器呈现出带有指定宽度和高度的框,并把边框和内边距放入框中。

默认情况下,元素的宽度(width) 和高度(height)计算方式如下:

  1. width(宽度) + padding(内边距) + border(边框) = 元素实际宽度
  2. height(高度)+padding(内边距) + border(边框) = 元素实际高度

2.属性值

  • content-box
  • 说明
    默认值。如果你设置一个元素的宽为 100px,那么这个元素的内容区会有 100px 宽,并且任何边框和内边距的宽度都会被增加到最后绘制出来的元素宽度中。

  • border-box

  • 说明
    告诉浏览器:你想要设置的边框和内边距的值是包含在 width 内的。也就是说,如果你将一个元素的 width 设为 100px,那么这 100px 会包含它的 border 和 padding,内容区的实际宽度是 width 减 去(border + padding) 的值。大多数情况下,这使得我们更容易地设定一个元素的宽高。

    示例

    • 代码语言
    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. </head>
    9. <body>
    10. <div class="box"></div>
    11. <style>
    12. /* 盒模型常用属性
    13. 1.width
    14. 2.height
    15. 3.border
    16. 4.paddin
    17. 5.margin
    18. */
    19. .box {
    20. width: 200px;
    21. height: 200px;
    22. background-color: chartreuse;
    23. border: 10px dashed black;
    24. background-clip: content-box;
    25. /* 内边距:位于边框与内容之间的区域,呼吸区,像包装 */
    26. padding: 20px;
    27. /* 200+ 20*2+10*2=260 */
    28. /* 目前是W3C的标准盒子 */
    29. /* IE盒子,怪异盒子,通过box-sizing来指定内容区的边界在哪里 */
    30. /* 默认height/width就是内容区大小 */
    31. box-sizing: content-box;
    32. /* 我的目标将一个260*260 ----200*200 */
    33. /* width = width+ padding + border= 200; */
    34. /* 指定盒模型的边界在边框就行了 */
    35. box-sizing: border-box;
    36. /* 通过收缩原来的内容区大小,来保证盒子在页面中的占据的空间不变 */
    37. /* margin: 外边距 */
    38. /* 盒模型的四个方向,是可以独立设置的 */
    39. /* padding border margin */
    40. }
    41. * {
    42. padding: 0;
    43. margin: 0;
    44. /* 盒子大小计算方式 */
    45. box-sizing: border-box;
    46. }
    47. </style>
    48. </html>

    二、伪类选择器的参数 an+b 的应用

示例

  • 代码语言
  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, initial-scale=1.0" />
  7. <title>伪类选择器参数</title>
  8. </head>
  9. <body>
  10. <ul class="list">
  11. <li>item1</li>
  12. <li>item2</li>
  13. <li>item3</li>
  14. <!-- <p>demo1</p> -->
  15. <li>
  16. item4
  17. <!-- <ul>
  18. <li>item4-1</li>
  19. <li>item4-2</li>
  20. <li>item4-3</li>
  21. </ul> -->
  22. </li>
  23. <li>item5</li>
  24. <li>item6</li>
  25. <li>item7</li>
  26. <li>item8</li>
  27. </ul>
  28. <input type="text" />
  29. <input type="text" disabled />
  30. </body>
  31. <style>
  32. /* :nth-of-type()这个就是参数 */
  33. /* :nth-of-type(参数) */
  34. /* 参数 = an+b a,n,b = [0,1,2,3,4,.....] */
  35. /* a:系数,n:计数器, b:偏移量 */
  36. /* 元素得有效编号:必须从1开始,n从0开始,b也是从0开始 */
  37. /* :nth-of-type(3) === :nth-of-type(0n+3) */
  38. .list > :nth-of-type(0n + 3) {
  39. background-color: red;
  40. }
  41. /* 1n 全部 */
  42. /* .list > :nth-of-type(1n) {
  43. background-color: hotpink;
  44. } */
  45. /* 1n+b b从第几个开始 */
  46. .list > :nth-of-type(1n + 3) {
  47. background-color: red;
  48. }
  49. /* 1*0+3=3
  50. 1*1+3=4 计算过程*/
  51. /* 因为1*任何数都不变,所以1可以不写 */
  52. /* 从3开始 */
  53. .list > :nth-of-type(n + 3) {
  54. background-color: blue;
  55. }
  56. /* 选中匹配所有的偶数元素 */
  57. .list > :nth-of-type(2n) {
  58. background-color: aquamarine;
  59. }
  60. /* even 偶数 */
  61. .list > :nth-of-type(even) {
  62. background-color: red;
  63. }
  64. /* 选中匹配所有的奇数元素 */
  65. .list > :nth-of-type(2n + 1) {
  66. background-color: red;
  67. }
  68. /* 奇数 odd*/
  69. .list > :nth-of-type(odd) {
  70. background-color: blue;
  71. }
  72. /* 只选前面三个 */
  73. .list > :nth-of-type(-n + 3) {
  74. background-color: navajowhite;
  75. }
  76. /* -1*0+3=3
  77. -1*1+3=2
  78. -1*2+3=1 */
  79. .list > :nth-last-of-type(-n + 3) {
  80. background-color: navajowhite;
  81. }
  82. /*
  83. 总结:
  84. 1.获取指定的某个(b)
  85. 2.获取前几个(n-b)
  86. 3.获取指定位置后的全部元素(n+b)
  87. 4。获取全部偶数(2n/even)或者奇数(2n+1/odd)元素 */
  88. /* :first-child
  89. :nth-child() */
  90. </style>
  91. </html>

三、常用单位

px,em,rem,vh,vw

  1. 绝对单位:px,像素,与设置相关,一英寸有96像素
  2. 相对单位:
  3. 1.em,rem,与字号相关 font-size
  4. 2.vw,vh.与视口相关(可视窗口大小)
  5. 3.1em=16px像素
  6. 4.em永远和当前或父级的font-size大小绑定的
  7. 5.1rem=10px
  8. 6.浏览器的默认最小字号为12px
  9. 7.vh,vw 将视口看成100份,每一份是1 相当于1%个vh,vw
  • 代码语言
  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. </head>
  9. <body>
  10. <!-- px,em,rem,vh,vm -->
  11. <div class="box"></div>
  12. <style>
  13. /* 绝对单位i:px ,像素,与设备相关,一英寸有96px */
  14. /* 相对单位 */
  15. /* 1.em rem ,与字号相关 font-size */
  16. /* 2.vm ,vh 与可视窗口相关 */
  17. .box {
  18. /* width: 160px; */
  19. width: 10em;
  20. /* height: 80px; */
  21. /* 1em=font-size */
  22. height: 5em;
  23. box-sizing: border-box;
  24. background-color: seagreen;
  25. /* font-size: 32px; */
  26. /* em永远和当前或者父级的font-size 大小绑定 */
  27. }
  28. :root {
  29. font-size: 10px;
  30. /* rem 可以用来引用html中的font-size */
  31. /* 这事根元素中的字号专用于布局了 */
  32. }
  33. .box {
  34. /* 我想得到一个160*80的盒子
  35. 16rem=16*10 */
  36. width: 16rem;
  37. height: 8rem;
  38. }
  39. body {
  40. font-size: 16px;
  41. }
  42. </style>
  43. <p>hello world</p>
  44. <!-- 理论上讲,p中的文本大小应该是10px,但是有个最小字号问题12px问题 ,浏览器的最小字号 -->
  45. <!-- vw,vw,将视口看成100份,每一份就是一个vw/vh -->
  46. <style>
  47. .box {
  48. /* 盒子宽度永远是视口的五分之一:20% */
  49. width: 20vw;
  50. height: 10vh;
  51. }
  52. </style>
  53. </body>
  54. </html>

四、媒体查询:@media 规则

  • 代码语言
  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. /* 查询:查询当前屏幕宽度变化 */
  11. </style>
  12. </head>
  13. <body>
  14. <button class="btn small">按钮1</button>
  15. <button class="btn middle">按钮2</button>
  16. <button class="btn large">按钮3</button>
  17. </body>
  18. <style>
  19. /* 移动优先,从最小屏幕开始进行媒体查询 */
  20. @media (min-width: 480px) {
  21. html {
  22. font-size: 12px;
  23. }
  24. }
  25. @media (min-width: 640px) {
  26. html {
  27. font-size: 14px;
  28. }
  29. }
  30. @media (min-width: 720px) {
  31. html {
  32. font-size: 16px;
  33. }
  34. }
  35. /* 桌面优先/pc优先,由大屏到小屏幕 */
  36. @media (max-width: 720px) {
  37. html {
  38. font-size: 16px;
  39. }
  40. }
  41. @media (max-width: 640px) {
  42. html {
  43. font-size: 14px;
  44. }
  45. }
  46. @media (max-width: 480px) {
  47. html {
  48. font-size: 12px;
  49. }
  50. }
  51. /* 边界问题 ,要保留 */
  52. @media (min-width: 720px) {
  53. html {
  54. font-size: 16px;
  55. }
  56. }
  57. /* 区间媒体查询 */
  58. @media (min-width: 480px) and (max-width: 640px) {
  59. body {
  60. background-color: yellow;
  61. }
  62. }
  63. </style>
  64. </html>
  65. /* 移动优先,从最小屏幕开始进行媒体查询 */
  66. @media (min-width:480px) {
  67. html {
  68. font-size: 12px;
  69. }
  70. }
  71. @media (min-width:640px) {
  72. html {
  73. font-size: 14px;
  74. }
  75. }
  76. @media (min-width:720px) {
  77. html {
  78. font-size: 16px;
  79. }
  80. }
  81. /* 桌面优先/pc优先,由大屏到小屏幕 */
  82. @media (max-width:720px) {
  83. html {
  84. font-size: 16px;
  85. }
  86. }
  87. @media (max-width:640px) {
  88. html {
  89. font-size: 14px;
  90. }
  91. }
  92. @media (max-width:480px) {
  93. html {
  94. font-size: 12px;
  95. }
  96. }
  97. /* 边界问题 ,要保留 */
  98. @media (min-width:720px) {
  99. html {
  100. font-size: 16px;
  101. }
  102. }
  103. /* 区间媒体查询 */
  104. @media (min-width:480px) and (max-width:640px) {
  105. body{
  106. background-color: yellow;
  107. }
  108. }
  109. </style>
  110. </html>
Correcting teacher:PHPzPHPz

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