cara mengatur ukuran gambar tanpa mengubah rasio aspek di CSS
img {
display: block;
max-width:230px;
max-height:95px;
width: auto;
height: auto;
}
Zunayed
img {
display: block;
max-width:230px;
max-height:95px;
width: auto;
height: auto;
}
.image-full {
background: url(...some image...) no-repeat;
background-size: cover;
background-position: center center;
}