Remove the border on an image in a link in HTML/CSS
You made a clickable image by using the IMG tag within a
<a href=""></a> link and the browser displays a frame or more precisely a border around the image.
There are two ways to delete the border:
HTML
Use the attribute BORDER = "0" in the tag <IMG>. For example:
<A HREF="jak58.html"><IMG SRC="pic1.gif" ALT="My picture." BORDER="0"></A>
CSS solution
In the stylesheet, define the code below:
a img
{
border: none;
}