图片在加超链接的时候会出现一个边框
下面就是怎么样去掉边框
<head>
<style type="text/css">
a:link { text-decoration: none;color: blue}
a:active { text-decoration:blink}
a:hover { text-decoration:underline;color: red}
a:visited { text-decoration: none;color: green}
img{border:0px}
</style>
</head>