CSS 学习四(派生选择器)

一、派生选择器
通过依据元素在其位置的上下文关系来定义样式的选择器,在 CSS1 中被称为上下文选择器 (contextual selectors),在 CSS2 中,它们称为派生选择器。派生选择器允许你根据文档的上下文关系来确定某个标签的样式。
比方说,你希望列表中的 strong 元素变为斜体字,而不是通常的粗体字,可以这样定义一个派生选择器:

li strong {
    font-style: italic;
    font-weight: normal;
  }

注意标记为

  • 的上下文关系:

    我是粗体字,不是斜体字,因为我不在列表当中,所以这个规则对我不起作用

    1. 我是斜体字。这是因为 strong 元素位于 li 元素内。
    2. 我是正常的字体。

    在上面的例子中,只有 li 元素中的 strong 元素的样式为斜体字,无需为 strong 元素定义特别的 class 或 id,代码更加简洁。
    下面的 CSS 规则:

    strong {
         color: red;
         }
    
    h2 {
         color: red;
         }
    
    h2 strong {
         color: blue;
         }
    

    它施加影响的 HTML:

    The strongly emphasized word in this paragraph isred.

    This subhead is also red.

    The strongly emphasized word in this subhead isblue.

  • 你可能感兴趣的:(CSS 学习四(派生选择器))