您能告诉我如何使用Internet Explorer 9删除这些空白边距吗?
请注意,它与Chrome完美配合。
这是我的HTML:
<div>
<div id="left" style="width:18px;float:left;display:inline-block;">
<img src="left.png" width="18" height="37" />
</div>
<div id="right" style="width:400px;float:right;">
<img src="right.png" width="400" height="37" />
</div>
<div id="center" style="margin: 0 400px 0 18px;" class="middleBar">
<div id="info">
<marquee>A message</marquee>
</div>
</div>
</div>
在3 div
中,中间的id="center"
是可扩展的。
这是我的CSS:
.middleBar{
background-image: url(../images/yyy.png);
background-repeat: repeat-x;
_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='zzz.png',
sizingMethod='scale' );
_background-image: none;
height: 37px;
}
这个问题是 Three Pixel Jog 吗?