<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <title>用图像代替文本作为超链接</title> </head> <body> <a href="http://www.baidu.com"><img src="../images/guojihua.jpg"/></a> </body> </html>
需要注意的是:在某些浏览器中,图片周围会出现蓝色的边框,如果不希望蓝色边框出现,那么,就必须为img元素定义border属性值为0,即设置img的属性如下:
<a href="http://www.baidu.com"><img src="../images/guojihua.jpg" border="0"/></a>
时间: 2024-11-10 14:46:13