欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Angular JS伪类选择器(奇偶行样式)

程序员文章站 2022-04-28 23:01:01
...
table tr:nth-child(odd)	{
  background-color: #f1f1f1;
}
table tr:nth-child(even) {
  background-color: #ffffff;
}

如上,:nth-child(odd)匹配***为奇数的元素,:nth-child(even)匹配***为偶数的元素。