Assuming the HTML structure as follows:
<div>
<img />
</div>
Use this css:
div{
height: 100px;
width: 80px;
overflow: hidden;
}
img{
min-height: 100%;
min-width: 100%;
}
Or you can set the image as a background image and use background-size: cover
source
share