Well, using css to do background color rollovers for table cells can be done in IE, it just requires a lot more effort than Mozilla. Formatting of the contents of the cell becomes a particular challenge. Here is a rather basic example that also shows some of the ways you might use to achieve the desired formatting of text:
Code:
<html>
<head>
<title></title>
<style type="text/css">
a.bg{
width:100%;
height:100%;
text-decoration:none;
cursor:default;
color:black;
padding-top:.6ex;
margin-bottom:-.4ex;
}
a.bg:hover{
background-color:pink;
width:100%;
height:100%;
}
td.bg {
padding:0;
margin:0;
}
</style>
</head>
<body>
<table height="300" border="1">
<tr>
<td height="225"><img src="thumb2/photo9.jpg" width="140" height="225" border=0 alt="" title=""></td>
</tr>
<tr>
<td class="bg"><a class="bg" href="javascript:void(0);"><br><center>Hi!</center></a></td>
</tr>
</table>
</body>
</html>
The real challenge is hiding all this garbage from other browsers.
Bookmarks