Hello friends, please i need the cells in my table to respond to mouseover. how do i do this.
regards
Page 1 of 1
How to make cells in my table mouseover effect
#2
Posted 13 March 2010 - 10:18 PM
Is the effect you're after to highlight a row when the mouse hovers over?
this CSS code will do it
this CSS code will do it
/* highlights a table row, when mouseover */
tr:hover{
background-color: #ccffff;
color: #FFFFFF;
}
tr:first-child:hover{
background-color: white;
color: black;
}
#3
Posted 14 March 2010 - 02:33 AM
Please keep in mind that that code will work on all browsers EXCEPT IE6.
You will need javascript to get it to work right in IE6.
You will need javascript to get it to work right in IE6.
- ← Learning .Net
- Server Side (PHP, Databases, ASP.NET, etc)
- How do i set my mail to automatically send to members →
Share this topic:
Page 1 of 1
Help
















