문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. <html> <div class="accordion"> <div class="accordion-header">Section 1</div> <div class="accordion-content"> <p>Content for Section 1 goes here.</p> </div> <div class="accordion-header">Section 2</div> <div class="accordion-content"> <p>Content for Section 2 goes here.</p> </div> <div class="accordion-header">Section 3</div> <div class="accordion-content"> <p>Content for Section 3 goes here.</p> </div> </div> <style> .accordion-header { cursor: pointer; font-weight: bold; } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.2s ease-out; } .accordion-content.active { max-height: 500px; } </style> <script> const accordionHeaders = document.querySelectorAll('.accordion-header'); accordionHeaders.forEach(header => { header.addEventListener('click', () => { header.nextElementSibling.classList.toggle('active'); }); }); </script> </html> 이 문서에서 사용한 틀: 틀:+1 (원본 보기) 틀:-1 (원본 보기) 틀:10.24 혁명 (두 번째 유신) (원본 보기) 틀:국기그림 (원본 보기) 틀:국기그림/구현 (원본 보기) 틀:나라자료 대한민국 (원본 보기) 연습장:Sakura/1 문서로 돌아갑니다.