使用Chrome时,图片不会显示在div中

时间:2015-01-01 10:02:20

标签: html css google-chrome

我创建了一个网站,它在Firefox和IE上工作正常,但由于某些原因,图像不会显示在我在Chrome上的div中。该图像具有正确的src,因为它适用于所有其他浏览器。如果我将“product”div重命名为其他东西,它会随机显示chrome中的所有内容,但是产品div的悬停效果等将不会生效。这是我的代码:

.product {
  float: left;
  margin-left: 20px;
  padding: 5px;
}
.product:hover {
  background-color: #dfdddd;
}
.tinfo {
  width: 300px;
  height: 50px;
  margin-top: -80px;
  position: relative;
}
.buy {
  float: right;
  margin-top: 14px;
}
a.add2 {
  color: #e9e9e9;
  opacity: 1;
  padding: 10px;
  background-color: #282828;
  border: 1px solid #282828;
}
a.add2:hover {
  color: #282828;
  background-color: #e9e9e9;
  text-decoration: none;
  border: 1px solid #282828;
}
<div class="product">
  <img src="images/myImg.png" class="imgSize">
  <div class="tinfo">Product info here
    <br>$00.00
    <div class="buy"><a href="cart.php?add=product1" class="add2">Add to cart</a>
    </div>
  </div>
</div>

1 个答案:

答案 0 :(得分:0)

使用此:

<div class="product">
  <img src="~/images/myImg.png" class="imgSize">
  <div class="tinfo">Product info here
    <br>$00.00
    <div class="buy"><a href="cart.php?add=product1" class="add2">Add to cart</a>
    </div>
  </div>
</div>