纯css 设置隔行样式

奇数行:

.messageitem:nth-child(even){
  color: #c18e14;
}

偶数行:

.messageitem:nth-child(odd){
  color: #84c084;
}
原文地址:https://www.cnblogs.com/luo1240465012/p/15031261.html