Small Image fit in Big division
HTML
<div>
<img...
CSS
div {
width:300px;
height:300px;
overflow:hidden;
border:1px solid red;
}
div img {
min-width:100%;
}
<div>
<img...
div {
width:300px;
height:300px;
overflow:hidden;
border:1px solid red;
}
div img {
min-width:100%;
}