Forum Moderators: not2easy
.nav {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
font-weight: bold;
font-variant: small-caps;
color: #0000FF;
}
Thanks
That means that if you want your hover effects to work on all browsers, you can only apply them to links. In the example above, if you set up a css rule...
.nav a:hover {
WHATEVER
}
Then added class="nav" to your <td>, the hover would effect any LINKS inside the table cell, but not the table cell itself, and would have NO effect in a table cell without a link in IE browsers.
The only way I know around this IE shortcoming involves javascript, and is therefore a tad unreliable.