0

我有一个 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; 
}
4

0 回答 0