css选择器除了第一个_:第一个孩子(CSS选择器)
css选择器除了第一个
描述 (Description)
This pseudo-class matches an element only if it’s the first child element of its parent element. For instance, li:first-child matches the first list item in an ol or ul element. It doesn’t match the first child of a list item.
仅当该伪类是其父元素的第一个子元素时,它才与该元素匹配。 例如,li:first-child匹配ol或ul元素中的第一个列表项。 它与列表项的第一个子项不匹配。
For example, let’s take the CSS selector mentioned above:
例如,让我们使用上面提到CSS选择器:
li:first-child {
⋮ declarations
}
And let’s apply it to the following markup:
并将其应用于以下标记:
<ul>
<li>This item matches the selector li:first-child.</li>
<li>This item does not match that selector.</li>
<li>Neither does this one.</li>
</ul>
Only the first list item element is matched.
仅第一个列表项元素被匹配。
Note that this pseudo-class only applies to elements—it doesn’t apply to anonymous boxes generated for text.
请注意,此伪类仅适用于元素,不适用于为文本生成的匿名框。
例 (Example)
This example selector matches the
first list item in an ol
or ul
element:
此示例选择器匹配ol
或ul
元素中的第一个列表项:
li:first-child {
⋮ declarations
}
css选择器除了第一个
上一篇: Spring Boot 异步线程
下一篇: CSS样式,选择器
推荐阅读
-
CSS选择除第一个和最后两个以外的所有子元素 + 结构伪类选择器深度解析
-
CSS_css选择器,选择所有子元素、最后一个、第一个、单数、双数、第n个、反选,nth-child,last-child,first-child
-
不:第一个孩子选择器
-
jQuery –第一个孩子和最后一个孩子选择器示例
-
CSS选择除第一个和最后两个以外的所有子元素 + 结构伪类选择器深度解析
-
层次选择器的class = one的第一个孩子,body后代div不是mini,列表中包含国庆的li
-
CSS:not() 选择器排除不想添加样式的元素(如第一个或最后一个,或特定元素)
-
CSS选择除第一个和最后两个以外的所有子元素 + 结构伪类选择器深度解析
-
css选择器除了第一个_:第一个孩子(CSS选择器)