How to remove black border around hyperlinked image?
Just add:
border: 0;
or:
a img {
border: 0;
}
to remove border from all image links.
That should do the trick.
a img {
border-width: 0;
}
in the code use border=0. so for example:
<img href="mypic.gif" border="0" />
within css
border : 0;
under whatever class your image is.
img {
border: 0
}
Or old-fashioned:
<img border="0" src="..." />
^^^^^^^^^^