Closed (sort of)

TEOM as you know it has been closed. I will keep it up for reference but it no longer will receive tutorial updates.

There are plans for a completely new site. If you'd like to be notified once the other site is up, simply subscribe to my mailing list.

Thanks for the support throughout all these years :)

XHTML + CSS

Removing Image Borders

Removing Image Borders tutorial preview.

To remove borders from images, simply enter this code in the CSS file:

img {
    border: 0;
    }

Note that this will also work for images used for links.

To remove the borders only from image links, use this piece of code instead:

a img {
    border: 0;
    }

Note that if you are using this method there’s no need to add border=“0” in the img tag within your pages.

· Jan 22, 2006 ·