모달의 구조 및 스타일링
CSS 활용해 모달을 스타일링 해보겠습니다.
모달의 기본 구조
HTML 태그와 클래스:
모달은 <div id="modal">
로 감싸져 있습니다. 내부적으로 헤더, 이미지 박스, 푸터의 세 구역으로 구분됩니다.
<div id="modal">
<div class="modal-content">
<div class="modal-header">...</div>
<div class="modal-img-box">...</div>
<div class="modal-footer">...</div>
</div>
</div>
모달의 기본 스타일링
모달은 전체 화면에 고정되며 반투명한 검정 배경을 가집니다.
CSS
#modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
}
모달 컨텐츠는 흰색 배경과 둥근 모서리를 가집니다.
CSS
.modal-content {
background-color: #fff;
border-radius: 4px;
}