我一直在尝试通过添加宽度和高度属性来使用 css 更改图像的大小。但是,这只改变了图片的缩放比例。
例如,我有一个 90 像素 x 90 像素的图像。但是,当我更改宽度和高度时,它就像放大版的图片而不是较小的图片。
我的CSS是:
.image-90 {
horiz-align: center;
width: 60px;
height: 60px;
background-size: 90px 90px;
margin: 10px;
border: 1px rgb(218, 218, 218) solid;
background: #C4C4C4 no-repeat 0 0;
background-image: url('/Content/images/person_noimage.png? width=90&height=90&mode=crop');
}
这是我的 html(我的图片 url 存储在 Person.AvitarImage 中):
<div class="image-90" style="background-image:url-Person.AvitarImage"></div>