好的,所以我已经定位了带边框的图像,在ie9中正常工作但在ie8中出于某种原因图像被略微填充右下角几个像素。我已经搜索了一段时间的答案而没有结果。 (如果我拿走定位没有填充)
这是img代码和类.image
的imgimg {
border: solid 8px white;
display: block;
}
.image {
position: absolute;
top: 580px;
left: 450px;
}
有什么建议吗?
答案 0 :(得分:1)
您使用的是CSS重置吗?你有没有试过清理边距和&填充来解决这个问题:
img {
border: solid 8px white;
display: block;
margin: 0;
padding: 0;
}
.image {
position: absolute;
top: 580px;
left: 450px;
margin: 0;
padding: 0;
}