问题描述
在網上看到的都是隔行換色要怎麼做才能讓表格是隔列換色 问题补充:我自己改成滑鼠移過去變色lib 写道
解决方案
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#B9CADC"> <colgroup height="25" align="left" style="background-color : orange"></colgroup> <colgroup height="25" align="center" style="background-color : green"></colgroup> <colgroup height="25" align="right" style="background-color : orange"></colgroup> <tr><th>ISBN</th><th>Title</th><th>Price</th> </tr> <tr><td>3476896</td><td>My first HTML</td><td>$53</td> </tr></table>
解决方案二:
每一列设置id,奇数列的id为奇数,偶数列的id为偶数,然后让所有奇数列为全为某个颜色,偶数列全为另外一个颜色,这样不就实现列的颜色改变了嘛。其实原理和每一行隔列变色的原理是一样的。
时间: 2024-11-08 21:08:41