因为他们不是兄弟姐妹。如果将:not选择器更改为父div,它将起作用。
POJO :plain ordinary java object 简单java对象个人感觉POJO是最常见最多变的对象,是一个中间对象,也...
:not(:first-child) 替换成 :not(:first-of-type) :first-child 匹配的是某父元素的第一个子元素,可以说是结构上的第一个子元素。 :first-of-type 匹配的是某父元素下相同类型子元素中的第一个,比如 p:first-of-type,就是指所有类型为p的子元素中的第一个。这里不再限制是第一个子元素了,只要是该...
org/如何使用非第一个孩子的 css 选择器/该选择器用于选择不是其父元素的第一个子元素的每个元素。它以参数的形式表示:not(第一个子)元素。语法::not( element ) { // CSS property } 示例:<!DOCTYPE html> not first child selector h1 { color:green; } div ul:not(:first-child) { backgrou...
CSS结构伪类选择器之否定伪类:not() 结构伪类选择器是针对 HTML 层级结构的伪类选择器。 常用的结构化伪类选择器有: :root选择器、:not选择器、:only-child选择器、:first-child选择器、:last-child选择器、 :nth-child选择器、:nth-child(n)选择器、:nth-last-child(n)选择器、:nth-of-type(n)选择器、...
CSS not:first-child selector Thenot:first-child selectoras the name suggests is used to select every element which is not the first child element of it's deriving parent element. Pretty simple right? The selector is not used for choosing the first child of its parent element. This select...
支持一个或多个表达式,每个表达式之间使用逗号分隔,然后以最小的表达式的值作为返回值。
/*选中div里面非首个、非最后一个的中间p元素*/div p:not(:first-child):not(:last-child){} :not伪类选择器可以通过多条件筛选不符合表达式的元素。 table tbody tr:not(:first-child):not(:last-child)td{text-align:right;} 以上代码可以选择table表格中tbody部分非首个、非最后一个的tr,并设置其子元...
结构伪类选择器是针对 HTML 层级结构的伪类选择器。 常用的结构化伪类选择器有: :root选择器、:not选择器、:only-child选择器、:first-child选择器、:last-child选择器、 :nth-child选择器、:nth-child(n)选择器、:nth-last-child(n)选择器、:nth-of-type(n)选择器、 ...
css 中的伪类 CSS伪类 (Pseudo-classes) 伪类包括选择器伪类、锚类伪类、内容伪类 选择器伪类(:first-child、:nth-child(n)、:last-child) 锚类伪类(:link、:visited、:hover 、:active) 内容伪类(:after 、 :before) 效果图: 效果图: CSS3的first-child和last-child选择器用法总结(很容易犯才错误,有几个...