캐러셀 이미지 슬라이드 높이 조정

니나노개발생활·2021년 4월 26일
0

💡ah-ha

목록 보기
4/51
post-thumbnail

토이프로젝트에 캐러셀을 적용시켰는데 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%;
        }
profile
깃헙으로 이사중..

0개의 댓글