悬停时缩略图不会放大

时间:2017-08-15 00:00:22

标签: css image

我不是CSS专家(但是学习!)我的一位客户问我为什么他的缩略图在悬停时并不像过去那样大。我不知道他们曾经有多大 - 可能是600像素。您可以在此eBay列表中看到他的问题:http://www.ebay.com/itm/371767762931

1 个答案:

答案 0 :(得分:0)

在你的css中尝试这个

.tem_img 
{
    max-width: 200px;
    border: 1px solid black;
}
img 
{
    max-width: 100%;//change this to 600%; and see what happens
    height: auto;
}

我只是检查元素并做了它并且它有效 befor After