Hi,
I have a table with alternating bg-colors and in which I highlight the row
focused by the mouse. This is achieved by
<TR bgcolor='#A7BCC F' onmouseout="thi s.bgColor = '#A7BCCF'"
onmouseover="th is.bgColor = '#86B1DC'">
<TD> Something ...
<TR bgcolor='#B8CAD A' onmouseout="thi s.bgColor = '#A7BCCF'"
onmouseover="th is.bgColor = '#86B1DC'">
<TD> Something else ...
THis works fine. If however I use CSS <TD class='myclass' > the
onmouseXXX-effect disappears. Any suggestions as how to resolve this ?
RHO
I have a table with alternating bg-colors and in which I highlight the row
focused by the mouse. This is achieved by
<TR bgcolor='#A7BCC F' onmouseout="thi s.bgColor = '#A7BCCF'"
onmouseover="th is.bgColor = '#86B1DC'">
<TD> Something ...
<TR bgcolor='#B8CAD A' onmouseout="thi s.bgColor = '#A7BCCF'"
onmouseover="th is.bgColor = '#86B1DC'">
<TD> Something else ...
THis works fine. If however I use CSS <TD class='myclass' > the
onmouseXXX-effect disappears. Any suggestions as how to resolve this ?
RHO
Comment