标签: css image aspect-ratio
如何在css中保持图像的宽高比?
#prodImg { width: 100%; height: auto; }
问题是我的图像具有不同的纵横比,我只希望它是矩形方向和响应。
答案 0 :(得分:1)
#prodImg { max-width: 100%; height: auto; }