![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
|
Hi, I am trying to create a table that will highlight the row (and if possible even column) when I mouse over it. An example is shown in the IBM link below (Table 1). Can anyone point me in the right direction ? Looking at the source I think its a css class file but I dont know what to check for next as the html file has soooo many css files included ! |
#2
| |||
| |||
|
|
Because of poor support in older browsers, either ensure that this (tr.hover) is not required behavior for the page to work. |
#3
| |||
| |||
|
|
Because of poor support in older browsers, either ensure that this (tr.hover) is not required behavior for the page to work. This would work in IE6, no? ...using links with no href html head style a { color: blue; text-decoration: none; } a:hover {background: #660000; color: white; text-decoration: underline; } /style /head body table border="2" tr> <td> <a> aaaa </a></td> <td> <a> bbbb </a></td> </tr tr> <td> <a> cccc </a></td> <td> <a> dddd </a></td> </tr /table /body |
#4
| |||
| |||
|
|
salmobytes wrote: Because of poor support in older browsers, either ensure that this (tr.hover) is not required behavior for the page to work. This would work in IE6, no? ...using links with no href html head style a { color: blue; text-decoration: none; } a:hover {background: #660000; color: white; text-decoration: underline; } /style /head body table border="2" tr> <td> <a> aaaa </a></td> <td> <a> bbbb </a></td> </tr tr> <td> <a> cccc </a></td> <td> <a> dddd </a></td> </tr /table /body And you think this will fix IE6's problem? Bet you did not test your own code. IE 6 doesn't support the :hover pseudo class on A elements *unless* they have an "href" property. If you can live with javascript Dean's IE fix will take care of that |
![]() |
| Thread Tools | |
| Display Modes | |
| |