html – Internet Explorer显示与彩色边框的图像链接

前端之家收集整理的这篇文章主要介绍了html – Internet Explorer显示与彩色边框的图像链接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下CSS代码链接
a {
    text-decoration: none;
    color: #248AC9;
}

a:hover {
    color: #8DCFF7;
}

问题在于,在Internet Explorer中,图像具有与“color”相同颜色的奇怪边框。如何解决这个问题,并正确绘制图像。 HTML代码很简单:
< a href =“calculator-operators.htm”>< img src =“img / link.png”/>< / a>

那么我该怎么解决这个问题呢?

解决方法

只为图像指定无边框:
a > img{
    border: 0;
}
原文链接:https://www.f2er.com/html/233066.html

猜你在找的HTML相关文章