This example shows how to remove the border of a linked image using the CSS properties.
Code:
<html> <head> <title>Remove the border of the linked image</title>
<style type="text/css">
a img { border: 0; } </style> </head> <body> <center> <p> In this example we remove the border of the linked image. </p> <a href="#"><img src="site_logo.gif" alt="codemiles"/></a> <center> </body> </html>
_________________ M. S. Rakha, Ph.D. Queen's University Canada