File size: 289 Bytes
db242f8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
.banner {
background-color: #f1f1f1;
border-radius: 10px;
overflow: hidden;
width: 240px;
height: 66px;
img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}
@media screen and (max-width: 600px) {
width: 120px;
height: 33px;
}
}
|