29 Sep
Javascript: How to remove blue rectangle around the image / imagemap
Sometimes it shows a focus like dark border around the image in IE and Firefox.
I guess this is not a problem in Google Chrome.
Solution for this is:
use css!
img
{
border: 0;
}
You can also set this in HTML as per your choice.

So simple but useful.
February 15th, 2009 at 9:16 AM