部落客廣告聯播

2007年5月21日 星期一

CSS筆記:HTML表格隔列交互換底色(CSS Notes: HTML Table background color cross row interchange)

HTML表格隔列交互換底色
(CSS Notes: HTML Table background color cross row interchange)
範例如下:
(Example:)
<style>
.db { border-collapse:collapse;}
.db tr{ background-color:expression('#dbdbdb,#EFEFEF'.split(',')[rowIndex%2]); }
</style>
<table width="100%" border="1" class="db">
<tr>
<td>
fdaafdadfs
</td>
</tr>
<tr>
<td>
fdaafdadfs
</td>
</tr>
</table>

fdaafdadfs
daafdadf
daafdadf
daafdadf

沒有留言: