Development/CSS
웹에 크기 제각각인 이미지 표시할 때 css
evagrim
2022. 8. 29. 21:41
img src에 넣어 object-fix 하거나
.object-fix {
object-fit: cover;
max-height: 200px;
}
div의 background-image url에 넣어 배경처럼 만들어주거나
.card-image {
width:100%;
height:1000px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}