How come this won't work?
...
...
The background color changes, but I get no border. How come? This works if I use it on individual cells, but I'd like to put a border around an entire row onMouseOver. Any ideas? Thanks!
--Ryan
Code:
<STYLE>
.row_over {
BORDER: 1pt solid black;
BACKGROUND-COLOR: #FCC552;
}
.row_out {
BORDER: none;
BACKGROUND-COLOR: #FFFFFF;
}
</STYLE>
Code:
<table>
<tr onmouseover="this.className='row_over';" onmouseout="this.className='row_out';">
The background color changes, but I get no border. How come? This works if I use it on individual cells, but I'd like to put a border around an entire row onMouseOver. Any ideas? Thanks!
--Ryan