要使用 CSS 按比例调整图像大小,请执行以下操作:
img.resize {
width:540px; /* you can use % */
height: auto;
}
控制大小并保持比例:
#your-img {
height: auto;
width: auto;
max-width: 300px;
max-height: 300px;
}
如果是背景图像,请使用 background-size:contain。
示例 CSS:
#your-div {
background: url('image.jpg') no-repeat;
background-size:contain;
}