为table的奇数行和偶数行设置样式
<style type="text/css"> .my_table tr:nth-child(even) { background: #d8ebfa; } .my_table tr:nth-child(odd) { background: White; } </style>
<style type="text/css"> .my_table tr:nth-child(even) { background: #d8ebfa; } .my_table tr:nth-child(odd) { background: White; } </style>