我有一个DIV,显示在投资组合网站上待售商品的图像之上。这在标准浏览器中工作正常,但是当涉及到旧浏览器(可怕的IE)时,由于某种原因,DIV被推向右侧。
任何帮助将不胜感激
这是售卖横幅的代码;
.post .forsale {
width: 70px;
height: 75px;
position:absolute;
margin-top: -10px;
margin-left: -8px;
display: none;
background-image: url(images/fs.png);
background-repeat:no-repeat;
}
这是.post
.post {
text-align: center;
overflow: hidden;
width: 200px;
height: 380px;
border: 1px solid #ccc;
-webkit-border-radius: 10px;
border-radius: 10px;
display: inline-block;
margin: 0 10px 62px;
background: #e0e0e0;
vertical-align: top;
*display: inline;
zoom: 1;
}