表格隔行显示背景
目录
添加自定义CSS样式:
table tr:nth-child(odd){background: #ccc;}
结果可设置奇数行背景
当需要偶数行背景时使用样式:
table tr:nth-child(even){background: #ccc;}
添加自定义CSS样式:
table tr:nth-child(odd){background: #ccc;}
结果可设置奇数行背景
当需要偶数行背景时使用样式:
table tr:nth-child(even){background: #ccc;}