CSS table表格隔行变色

it2023-09-30  64

/设置奇数行颜色/ table tr:nth-child(odd) { background: #ccc; } /设置偶数行颜色/ table tr:nth-child(even) { background: #ccc; }

最新回复(0)