在此示例中,将应用:not(:first-of-type)选择器来排除其父项的第一个子项。然后,为color属性设置值blue: body a:not(:first-of-type){ color:blue; } 输出 总结 要不选择第一个子标签,请使用:not(:first-child)、:not(:nth-of-type(1))或:not(:first-of-type)选择器。如果不使用:not,这些选择...
如果将:not选择器更改为父div,它将起作用。
可以利用not和first-child,通过下面的CSS实现。 div > span :not(:first-child) { margin-left:10px } 还可以利用兄弟元素选择器+,像这样: div > span + span { margin-left:10px } 如果HTML是这样的,应该怎么做呢? 其实也很简单,用通配符就可以了: div > * :not(:first-child) { margin-left:10...
因为他们不是兄弟姐妹。如果将:not选择器更改为父div,它将起作用。
BO:全称是business object:业务对象主要作用是把业务逻辑封装为一个对象。这个对象可以包括一个或多个其...
可以利⽤not和first-child,通过下⾯的CSS实现。1. div > span :not(:first-child) { 2. margin-left:10px 3. } 还可以利⽤兄弟元素选择器+,像这样:1. div > span + span { 2. margin-left:10px 3. } 如果HTML是这样的,应该怎么做呢?其实也很简单,⽤通配符就可以了:1. div > * ...
:not(:first-child) 替换成 :not(:first-of-type) :first-child 匹配的是某父元素的第一个子元素,可以说是结构上的第一个子元素。 :first-of-type 匹配的是某父元素下相同类型子元素中的第一个,比如 p:first-of-type,就是指所有类型为p的子元素中的第一个。这里不再限制是第一个子元素了,只要是该...
CSS结构伪类选择器之否定伪类:not() 结构伪类选择器是针对 HTML 层级结构的伪类选择器。 常用的结构化伪类选择器有: :root选择器、:not选择器、:only-child选择器、:first-child选择器、:last-child选择器、 :nth-child选择器、:nth-child(n)选择器、:nth-last-child(n)选择器、:nth-of-type(n)选择器、...
方法1:使用伪类选择器:not dom div:not(:first-child){background:red;} 说明::not(selector) 选择器匹配非指定元素/选择器的每个元素。:first-child 选择器用于选取属于其父元素的首个子元素的指定选择器。方法2:使用nth-of-type或者nth-child dom div:nth-of-type(n+2){background:red;} ...
not(:first-child)一个都没选中。如果你所有在同一个(父元素)里,i:not(:first-child)就对了 ...