首页 > 网站 > WEB开发 > 正文

如何去掉添加链接后图片的边框

2024-04-27 14:24:47
字体:
来源:转载
供稿:网友
如何去掉添加链接后图片的边框

如何去掉添加链接后图片的边框:

IE浏览器中,默认状态下,如果给图片添加链接图片会产生边框。只要为图片的CSS代码添加border:0px即可。

代码实例:

<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="author" content="http://www.51texiao.cn/" /><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="#"><img src="Images/004.jpg" /></a></div></body></html>

原文地址是:http://www.51texiao.cn/div_cssjiaocheng/2015/0519/1898.html

最为原始地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=4706


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表