如何使用 CSS 让图片等比例缩放
开门见山回答问题:
要在 CSS 中让图片等比例缩放,可以使用 max-width 和 max-height 属性,或使用 object-fit 属性。
详细展开回答:
1. 使用 max-width 和 max-height 属性
<code class="<a style=\'color:#f60; text-decoration:underline;\' href=" https: target="_blank">css">img {
max-width: 100%;
max-height: 100%;
}</code>




