For better visual experience i use a CSS style on a <tr>
when hovering over it.
to see the complete design: http://jsfiddle.net/rDjE3/1/
i used:
.table_test tr:hover {
outline: none;
border-color: #29EC24;
box-shadow: 0 0 10px #29EC24;
}
this works fine in firefox.
but in Internet Explorer the hover gets displayed not complete (just between the <td>
) and in Google Chrome completely nothing is displayed.
Why?