The "border" attribute of the <img> tag specifies the width of the border in pixels. MSIE provides a border by default while all other browsers default to zero pixels (no border). So if you want a border, you must specify this attribute:

<img src="my.jpg" border=2 alt=...>

If you don't want a border you still must specify this attribute:

<img src="my.jpg" border=0 alt=...>

Very few websites use borders around their images.

pop-img_border.html © 2007, Martin Rinehart