📜  选择 html 表中的每一行 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:43.145000             🧑  作者: Mango

代码示例1
tr:nth-child(even) {
   // if it's even - rows 2,4,6 etc - apply styles
}

tr:nth-child(odd) {
   // if it's odd - rows 1,3,5 etc - apply styles
}