Blogger Information
Blog 29
fans 0
comment 0
visits 11081
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
伪类选择器、选择器权重及盒子模型
尹辉
Original
353 people have browsed it

伪类

CSS 伪类是添加到选择器的关键字,根据元素的位置和状态来选择匹配的子元素

  • 1,结构伪类,与关系选择器类似但不一样。用来选择一组兄弟元素中的特定元素,查询入口可以是父级元素,也可以是其中一个兄弟元素。

    HTML 示例代码结构:

    1. <ul class="list">
    2. <li class="item">item1</li>
    3. <li class="item">item2</li>
    4. <li class="item">item3</li>
    5. <li class="item">item4</li>
    6. <li class="item">item5</li>
    7. <li class="item">item6</li>
    8. <li class="item">item7</li>
    9. <li class="item">item8</li>
    10. <li class="item">item9</li>
    11. </ul>
    • :first-child,第一个元素

      1. /* 查询入口为父元素 */
      2. .list>.item:first-child{ background: pink; }
      3. /* item1 被选中 */
    • :last-child,最后一个元素

      1. /* 查询入口为兄弟元素 */
      2. .item:last-child{ background: pink; }
      3. /* item9 被选中 */
    • :nth-child(an+b)

      首先找到所有当前元素的兄弟元素,然后按照位置先后顺序从 1 开始排序,选择的结果(an+b)匹配到的对应序号的元素集合。

      注意:n=0,1,2,3…,a 和 b 都必须为整数,an 必须写在 b 前面。

      1. .list>.item:nth-child(0n+3){ background: pink; }
      2. /* item3 被选中 */
      3. /* 可以简写为:nth-child(3) */
      4. .list>.item:nth-child(n) /* (1n+0),全选中 */
      5. .list>.item:nth-child(n+3) /* (1n+0),item3(含)以后全选中 */
      6. .list>.item:nth-child(-n+3) /* (-1n+3),前三个被选中 */
      7. .list>.item:nth-child(2n) /* (2n+0),偶数项 */
      8. .list>.item:nth-child(even) /* (even)=(2n+0),偶数项*/
      9. .list>.item:nth-child(2n+1) /* (2n+1),奇数项 */
      10. .list>.item:nth-child(odd) /* (odd)=(2n+1),奇数项*/
      11. .list>.item:nth-child(3n) /* (3n+0),第3、6、9...项*/
      12. .list>.item:nth-child(3n+1) /* (3n+1),第1、4、7...项*/
    • :nth-last-child(an+b)

      用法和 :nth-child(an+b) 相似,只是元素排序是从后向前排(最后一个序号为1)

      1. .list>.item:nth-last-child(-n+3){ background: pink; }
      2. /* 最后三个被选中 */
  • 2,状态伪类(用户行为伪类),这些伪类需要用户进行一些交互才能够应用,例如将鼠标指针悬停在元素上。

    HTML 示例代码结构:

    1. <form action="#">
    2. <fieldset class="login">
    3. <legend>用户登录</legend>
    4. <label for="userName">
    5. 用户名:
    6. <input type="text" name="userName" id="userName" required>
    7. </label><br />
    8. <label for="password">
    9. 密码:
    10. <input type="password" name="password" id="password" required>
    11. </label><br />
    12. <label for="email">
    13. 邮箱:
    14. <input type="email" name="email" id="email">
    15. </label><br />
    16. <label for="rem">
    17. <input type="checkbox" name="rem" id="rem">
    18. 记住我
    19. </label><br />
    20. <button type="submit">点击登录</button>
    21. </fieldset>
    22. </form>

    初始页面显示:

    • :focus 表示获得焦点的元素(如表单输入)。当用户点击或触摸元素或通过键盘的“tab”键选择它时会被触发。

      1. .login :focus{
      2. outline: 2px solid red;
      3. }
      4. /* 获取焦点的元素加上红色边框 */

      页面显示效果:

    • :required 表示任意设置了required属性的<input><select>, 或 <textarea>元素。这个伪类对于高亮显示在提交表单之前必须具有有效数据的字段非常有用。

      1. .login :required{
      2. background-color: lightyellow;
      3. }
      4. /* 设置了必填(required)的元素高亮显示 */

      页面显示效果:

    • checked 表示任意被勾选/选中的 radio(单选按钮),checkbox(复选框),或者 option(select 中的一项)。

      1. .login input[type="checkbox"]:checked + label{
      2. color: red;
      3. }
      4. /* 复选框选中时,其后的<label>元素的文字为红色 */

      页面显示效果:

    • :hover 在光标(鼠标指针)悬停在元素上时提供关联的样式。

      1. .login>button:hover{
      2. background-color: blue;
      3. color: white;
      4. }
      5. /* 鼠标悬停在提交按钮上时,按钮变成蓝底白字 */

      页面显示效果:

    更多状态伪类查询:https://developer.mozilla.org/zh-CN/docs/Web/CSS/Pseudo-classes。

选择器权重(CSS 特异性)

如果有两条或两条以上指向同一元素的冲突 CSS 样式声明,则浏览器将根据权重(优先级)来确定使用哪一条声明。

以下定义了四种选择器的特异性级别:

  • 行内样式 - 行内(内联)样式直接附加到要设置样式的元素。实例:<h1 style="color: #fff;">。

  • ID - ID 是页面元素的唯一标识符,例如 #navbar。

  • 类、属性和伪类 - 此类别包括 .classes、[attributes] 和伪类,例如::hover、:focus 等。

  • 元素和伪元素 - 此类别包括元素名称和伪元素,比如 h1、div、:before 和 :after。

特异性计算方法:

  • 行内样式(style 属性)为1000
  • 每个 ID 添加 100
  • 每个属性、类或伪类添加 10
  • 每个元素名称或伪元素添加 1

示例:

  1. A: h1{ color="red"; }
  2. B: #content h1{ color="blue"; }
  3. C: <div id="content"><h1 style="color: green">Heading</h1></div>

其中:

  • A 的特异性为 1(一个元素)
  • B 的特异性为 101(一个 ID 引用以及一个元素)
  • C 的特异性为 1000(行内样式)

由于 1 < 101 < 1000,因此第三条规则(C)具有更高的特异性,所以将被应用。

注意:

  • 可以通过增加选择器数量来增加特异性,例如:div>article>h1{} 的特异性大于 article>h1{}。
  • 可以通过重复 ID 或 类选择器来增加特异性,例如:#login#login{} 大于 #login{},.user.user{} 大于 .user{}。

  • 数量再多的元素名称或伪元素(例如:11个),其特异性也不会超过一个属性、类或伪类。同样,数量再多的属性、类或伪类不会超过一个 ID,数量再多的 ID 不会超过行内样式。

  • 通配选择符*,关系选择符+ > ` ~`,对特异性没有影响。

  • 在特异性相同的情况下,前面写的样式会被后面写的样式覆盖。

  • !important例外:当在一个样式声明中使用一个 !important 规则时,此声明将覆盖任何其他声明。应尽量避免使用!important规则,优先考虑样式权重来解决问题。

  • :is():not() 本身不会参与特异性计算,但它们括号内部的选择器会参与特异性计算。

盒子模型

(1)基本概念

当对一个文档进行布局(lay out)的时候,浏览器的渲染引擎会根据标准之一的 CSS 基础框盒模型(CSS basic box model),将所有元素表示为一个个矩形的盒子(box)。CSS 决定这些盒子的大小、位置以及属性(例如颜色、背景、边框尺寸…)。

每个盒子由四个部分(或称区域)组成。如下面示例:

其中:

  • element(元素),即content(内容):为元素的真是内容,包括文本、图像、视频等。
  • padding(内边距),清除内容周围的区域。内边距是透明的。
  • border(边框),围绕内边距和内容的边框。
  • margin(外边距),清除边界外的区域。外边距是透明的。
  • width(宽度),图示指的是content(内容)的宽度,此时也叫 content-box 宽度
  • height(高度),图示指的是content(内容)的高度,此时也叫 content-box 高度

(2)box-sizing 属性

box-sizing 属性决定盒子大小的计算方式:

  • box-sizing=”content-box”
    默认值,此时 width、weight 指内容的宽度、高度。盒子的总宽度 = width + padding + border + margin,盒子的总高度 = height+ padding + border + margin
  • box-sizing=”padding-box”
    此时 width、weight 包含内容和 padding。盒子的总宽度 = width + border + margin,盒子的总高度 = height + border + margin
  • box-sizing=”padding-box”
    此时 width、weight 包含内容和 padding、border。盒子的总宽度 = width + margin,盒子的总高度 = height + margin
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