是否有一种方法来调整(缩小)图像按比例使用CSS?

我用的是JavaScript的方式,只是想看看CSS是否可行。


当前回答

你可以使用对象匹配属性:

.my-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

这将适合图像,而不改变比例。

其他回答

2015年回顾:

<img src="http://imageurl" style="width: auto; height: auto;max-width: 120px;max-height: 100px">

我重新访问了它,因为所有常见的浏览器现在都有上面Cherif建议的自动工作,所以它工作得更好,因为你不需要知道图像是否宽于高。

旧版本: 如果你被120x100的盒子限制,你可以这样做

<img src="http://image.url" height="100" style="max-width: 120px">

如果是背景图片,使用background-size:contain。

css例子:

#your-div {
  background: url('image.jpg') no-repeat;
  background-size:contain;
}

使用这种简单的缩放技术

img {
    max-width: 100%;
    height: auto;
}
@media {
  img { 
    width: auto; /* for ie 8 */
  }
}

Image_tag ("/icons/icon.gif",高:'32',宽:'32') 我需要设置高度:'50px',宽度:'50px'到图像标签,这段代码从第一次尝试开始工作注意,我尝试了上面所有的代码,但运气不好,所以这段代码可以工作,下面是我的_nav.html.erb的代码: < % = image_tag (" # {current_user。图像}",高度:'50px',宽度:'50px') %>

img {
    max-width:100%;
}

div {
    width:100px;
}

使用这个代码片段,您可以以更有效的方式完成它