我有以下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