为table的奇数行和偶数行设置样式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为table的奇数行和偶数行设置样式相关的知识,希望对你有一定的参考价值。
<style type="text/css"> .my_table tr:nth-child(even) { background: #d8ebfa; } .my_table tr:nth-child(odd) { background: White; } </style>
以上是关于为table的奇数行和偶数行设置样式的主要内容,如果未能解决你的问题,请参考以下文章
c#里wpf下怎么设置dataGrid的奇数行和偶数行各为一种颜色?比如this.dataGrid.后面加啥属性进行设置?
awk 如何将一个文本的奇数行和偶数行合并 与 第2行和第3行合并