w3.css 모달 모달은 현재 페이지 상단에 표시되는 대화 상자/팝업 창이다. 오픈 모달 ×Modal Header Hello World! Modal FooterClose W3.CSS 모달 클래스 W3.CSS는 모달 창에 대해 다음 클래스를 제공한다. Class Defines w3-modal 모달 컨테이너 w3-modal-content 모달 콘텐츠 모달 만들기 w3 -modal 클래스는 모달에 대한 컨테이너를 정의한다. w3 -modal-content 클래스는 모달 콘텐츠를 정의한다. 모달 콘텐츠는 HTML 요소(div, 제목, 단락, 이미지 등)일 수 있다. 예제 <!– Trigger/Open the Modal –> <button onclick=”document.getElementById(‘id01’).style.display=’block'” class=”w3-button”>Open Modal</button> <!– The Modal –> <div id=”id01″ class=”w3-modal”> <div class=”w3-modal-content”>…