Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将非常大的图像调整为给定的设置,例如图像是 2660x2000 的东西,那么如何将其调整为 1024x960?我尝试了所有可能的帮助,但无法得到我想要的。
只需写在你的CSS:
(img selector) { max-width: 1024px; height: auto; /*Height is auto the image to be re-sized proportionally */ }