Is there a way to selectively apply CSS hover effects to only specific cells in a table? And can I disable it on the cells where I don't want it?
td:hover {
border-style:dotted;
border-color:#F60;
border-width:medium;
border-left-style:dotted;
border-right-style:dotted;
}
I'm currently using this code but need it to be more targeted towards certain cells.