2

在我创建的这个页面上,由于某种原因,图像在 Firefox 中是全尺寸的,但它可以正确调整大小以适应 Chrome 和其他浏览器。
我不知道为什么这在 Firefox 中不起作用。
有谁知道如何使它正常工作?

这是我的CSS:

#map-wrap {
    display: table;
    margin: 0 auto;
}

#map {
    width: 75%;
    display: inline-block;
}

#space-holder {
    width: 3%;
    display: inline-block;
}

#map-options {
    width: 22%;
    display: inline-block;
    vertical-align: top;
}

#map img {
    max-width: 100%;
    max-height: 100%;
}
4

1 回答 1

7

更改max-width: 100%width: 100%或仅使用两者。

于 2013-02-20T01:09:54.680 回答