nth-child(odd)nth-child(odd):选择列表的奇数行。 举例,奇数行背景显示为灰色,代码如下: 代码语言:javascript 复制 li:nth-child(odd){background:#999;} 我们可以通过另外的方法选择奇数行,例如: nth-child(n+1) 、 nth-child(2n-1) 等。 代码如下: 代码语言:javascript 复制 /*First*/li:nth-child(...
nth-child(2n)/nth-child(even): 双行样式 nth-child(2n+1)/nth-child(odd): 单行样式 .item li:nth-child(2n){background-color:red;}.item li:nth-child(2n+1){background-color:pink;} 实现前三个和后三个样式效果 实现前三个和后三个样式效果 nth-child(-n+3)匹配最前三个子元素 nth-last-...
li:nth-child(n+4){color:pink} 7. 选择从第一个到第四个 这里的数字4也是可以根据你的需要替换的。 li:nth-child(-n+4){color:pink} 8.nth-last-child(3) 表示最后三个标签 li:nth-last-child(3){color:pink} 9.nth-last-child(3n) 表示3的倍数3.6.9…… li:nth-last-child(3n){color:pin...
:nth-child 是 CSS3 提供的一个好用的选择器,因为在项目中经常用到,所以简单总结了它的常用方法,下面示例代码截图用的是同一个例子,p元素的父元素都是body p:nth-child(2) 表示给第2个p元素添加背景色,p:nth-child(3)是第3个p元素,以此类推 p:nth-child(2) 承接上面的示例,如果这里的p元素前面还有...
:nth-child(-n+length)/*选择小于length前面的元素*/ :nth-child(n*length+1);/*表示隔几选一*/ //上面length为整数 :nth-child()可以定义他的值(值可以是整数,也可以是表达式),如上面所示,用来选择特定的子元素,对于这个我们直接看实例,比我说的更好理解。
介绍一个关于CSS :nth-child 选择器的新特性。 不知道大家有没有碰到过这样的问题或者需求,从一个特殊的、不可更改的HTML结构中选择出你想要的元素,比如 标题1 标题2 段落1 段落1 段落2 段落2<!--想选中这个--> 段落2 段落3 请问,如何选择第2个.p2标签,如下 image.png 如果不借助 JS,好像并不是很容易...
:first-child:first-of-type:last-of-type:only-of-type:only-child:nth-child(n):nth-last-child(n):nth-of-type(n):nth-last-of-type(n):last-child 具体每个有什么差异,可以CSS 选择器参考手册页面进行查询. 今天,我们着重来讲的是nth-child ...
完整CSS选择器参考手册实例 指定每个 p 元素匹配的父元素中第 2 个子元素的背景色: p:nth-child(2) { background:#ff0000; } 尝试一下 » 定义和用法:nth-child(n) 选择器匹配父元素中的第 n 个子元素,元素类型没有限制。n 可以是一个数字,一个关键字,或者一个公式。
:first-child :first-letter :first-line :hover :last-child :link :nth-child :nth-last-child :only-child :visited child (>) descendant CSS:nth-child selector This CSS tutorial explains how to use the CSS selector called:nth-childwith syntax and examples. ...
使用CSS选择器:nth-child(),能轻松修改特定子元素的样式。该选择器不考虑子元素的类型,直接选取父元素的第N个子元素。要修改父元素的前三个子元素的样式?简单,使用:nth-child(1n)即可。若需选择列表中的偶数标签,可以使用:nth-child(2n);而要选择奇数标签,则是:nth-child(2n-1)。若需从第...