保持纵横比与图像宽度在css中

问题描述:

有没有办法使用css修复宽度较小的图像宽高比?也许通过使用jQuery / javascript?

Is there a way to fix the aspect ratio of images given a smaller width using css? Maybe by using jQuery / javascript?

谢谢!

使用纯CSS,你只能设置图像的一个维度, width height 并将另一个设置为 auto ,例如:

With plain CSS, you could set only one dimension of the images, either width or height and set the other as auto, e.g.:

.thumb { 
  width:200px;
  height:auto;
}

图像宽度固定为200px,高度取决于宽高比。

The images will have a fixed 200px width, and the height will depend on the aspect ratio.