help me with my html?

When you hover over the pic the border is supposed to turn green.
It works on firefox but not internet explorer.
Help!
<html>
<head>
<style>
.botton {margin:10px 10px 10px 10px; padding:0px; text-decoration:none;}
a.botton {color:#FFFFFF; text-decoration:none;}
.click:hover {border:3px groove #33FF33;}
.click {border:3px groove #FFFFFF;}
</style>
</head>
<body>
<table>
<tr>
<td><a href="products/trains.html" class="botton">
<img src="train.jpg" width="200px" height="130px"></a>
</td>
<td><a href="products/track.html" class="botton">
<img src="track.jpg" width="200px" height="130px" class="click"></a>
</td>
</tr>
<tr>
<td><a href="products/thomas.html" class="botton">
<img src="thomas.jpg" width="200px" height="130px" class="click"></a>
</td>
<td><a href="products/sean.html" class="botton">
<img src="station.jpg" width="200px" height="130px" class="click"></a>
</td>
</tr>
<tr>
<td><a href="products/sets.html" class="botton">
<img src="set.jpg" width="200px" height="130px" class="click"></a>
</td>
</tr>
</table>
</body>
</html>
 
Back
Top