Table Rollover

April 13th, 2009
| Tags: table rollover
Tutorial Description:
Tutorial Description:
Learn how to make table background rollovers.
The following code is an example on how to use the table rollover effect.
<table width="50%" border="0" cellspacing="3" cellpadding="1" style="border: 1px dashed #FFFFFF;">
<tr>
<td onmouseover="this.style.backgroundColor='#FF0000';" onmouseout="this.style.backgroundColor='#292929';" height="15">
Link
</td>
<td onmouseover="this.style.backgroundColor='#FF0000';" onmouseout="this.style.backgroundColor='#292929';" height="15">
Link
</td>
<td onmouseover="this.style.backgroundColor='#FF0000';" onmouseout="this.style.backgroundColor='#292929';" height="15">
Link
</td>
<td onmouseover="this.style.backgroundColor='#FF0000';" onmouseout="this.style.backgroundColor='#292929';" height="15">
Link
</td>
</tr>
</table>
Leave a comment
| Trackback

