토이프로젝트에 캐러셀을 적용시켰는데 height 값을 줘도 높이가 조정되지 않았다.
부모태그 - 자식태그를 사용하여 높이 조정하는 방법을 찾았다!
.pics { /* 전체 케러셀 */
width: 600px;
float: left;
position: relative;
left: 50%;
object-fit: cover;
}
.carousel-inner {
width: auto;
height: 250px; /* 이미지 높이 변경 */
}
.carousel-item {
width: auto;
height: 100%;
}
.d-block {
display: block;
width: auto;
height: 100%;
}