隔行变色以及选中高亮/变色

#mytr:nth-child(even){
background-color: red;
}
#mytr:nth-child(odd){
background-color: yellow;
}
#mytr:hover{
background-color: green;
}

你可能感兴趣的:(隔行变色以及选中高亮/变色)