(so that when a user hovers over the table, it lights up).
However, in IE, the hovering part seems SLOW. Again, this is only when I use a big table. In Firefox, the hovering part is FAST, even when using a big table.
Are there any alternate routes I can take to make my big table light up fast? (just as it does in Firefox?)
Now, everything is great with this file, but again, it just isn't fast with a BIG table.
My CSS is this:
#hover table:hover {
background: #f8f8f8;
}
And in my code I use this:
<div id="hover">
2 nested tables here.
</div>
What can be done here? Is it because I'm using a nested table? In Firefox, it works perfectly, and in IE, it works the same, but it is just noticeably slower.
Bookmarks