lonechicken
Programmer
I have the following code in an attempt to have borders around thumbnail images changing colors while hovering. It works in IE, but not in Mozilla (probably Netscape 6+ as well). Mozilla kinda shows a weird underline thing instead of a full border around the thumbnail.
--In the CSS page--
a:link.image_link
{
border:1px;
border-thickness: 1px;
border-style: solid;
color: #000000
}
a:hover.image_link
{
border:1px;
border-thickness: 1px;
border-style: solid;
color: #00cc00
}
--In the HTML Page--
<a href="viewimage.asp?id=(number)" class="image_link">
--------------------
The examples can be seen at On the flip side, if I used border=1 for the image tag, and no border styles, it'll work in Mozilla but does nothing in IE when hovering. Any help?
--In the CSS page--
a:link.image_link
{
border:1px;
border-thickness: 1px;
border-style: solid;
color: #000000
}
a:hover.image_link
{
border:1px;
border-thickness: 1px;
border-style: solid;
color: #00cc00
}
--In the HTML Page--
<a href="viewimage.asp?id=(number)" class="image_link">
--------------------
The examples can be seen at On the flip side, if I used border=1 for the image tag, and no border styles, it'll work in Mozilla but does nothing in IE when hovering. Any help?