时间:2021-07-01 10:21:17 帮助过:10人阅读
这时候一个有意思的朋友出现了,:nth-child(n) 一直在那蹦?着说“找我呀”,这个是说选择器匹配属于其父元素的第N个子元素,从0开始,比如说p:nth-child(2)指下标为2的p元素,就是第3个元素;然后如果想实现奇偶行不同,奇数可以直接用odd,偶数直接用even,方便,如果用(2n+1),(2n)也OK的;
.history-content:nth-child(2n+1) { background: #D8F0E7;}.history-content:nth-child(2n) { background: #eee;}.history-content:hover { background: #fff;}
.history-content:nth-child(odd) { background: #D8F0E7;}.history-content:nth-child(even) { background: #eee;}.history-content:hover { background: #fff;}最后效果是这样的,一行灰色,一行绿色,触碰成白色
菜鸟学习,如有更好的,敬请交流!哈
版权声明:本文为博主原创文章,未经博主允许不得转载。