CSS rollover
CSS rollover
Out of context: Reply #9
- Started
- Last post
- 10 Responses
- thismanslife0
td:hover
{
background-color: #FF0000;
}...bear in mind this will make *every* TD *everywhere* in your site change colour when you hover over it. To do it only on certain cells, define a class for it and put the class on the cells you want it to happen on... or give only the table you want it to apply to a class (or ID).