0

如何将非常大的图像调整为给定的设置,例如图像是 2660x2000 的东西,那么如何将其调整为 1024x960?我尝试了所有可能的帮助,但无法得到我想要的。

4

1 回答 1

1

只需写在你的CSS:

(img selector) {
   max-width: 1024px;
   height: auto; /*Height is auto the image to be re-sized proportionally */
}
于 2014-01-02T22:03:48.607 回答