我有一个包含 5 个图像的 div,由于某种原因,只有第 3 个和第 5 个图像没有显示在 IE 中。它们是 png 图像文件类型。当页面加载时,图像有一个边框,边框内有一个带有“x”的小图标。这仅适用于最新的 IE。在 Chrome 和 Firefox 中运行良好。跨浏览器头痛的第 4 天。
HTML
<div id="col3">
<h4 style="text-align:center;">Affiliations:</h4>
<br>
<img src="./Gallery/sponsorimg/astro.png" style="align:center;width:150px;height:100px;margin-bottom:45px">
<br>
<img src="./Gallery/sponsorimg/avngr.png" style="align:center;width:150px;height:100px;margin-bottom:45px">
<br>
<img src="./Gallery/sponsorimg/skulc.png" style="align:center;width:150px;height:100px;margin-bottom:45px">
<br>
<img src="./Gallery/sponsorimg/sqdgrp.png" style="align:center;width:150px;height:100px;margin-bottom:45px">
<br>
<img src="./Gallery/sponsorimg/812.png" style="align:center;width:150px;height:100px;margin-bottom:45px">
</div>
CSS
#col3
{
float: left;
width: 20%;
height: 850px;
margin-left: 3%;
margin-bottom: 10px;
background-color:#fff;
background:url('dpimg4.jpg');
border:double 7px #000000;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
}