如何去掉添加鏈接後圖片的邊框:
IE浏覽器中,默認狀態下,如果給圖片添加鏈接圖片會產生邊框。只要為圖片的CSS代碼添加border:0px即可。
代碼實例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://hovertree.com/" />
<title>何問起</title>
<style type="text/css">
.mytest{
width:300px;
height:300px;
border:1px solid red;
text-align:center
}
img{
width:200px;
height:200px;
border:0px;
}
</style>
</head>
<body>
<div class="mytest"><a href="http://hovertree.com/"><img src="http://hovertree.com/hvtimg/201512/agagq0or.jpg" /></a></div>
</body>
</html>