문서 편집 권한이 없습니다. 다음 이유를 확인해주세요: 요청한 명령은 다음 권한을 가진 사용자에게 제한됩니다: 사용자. 문서의 원본을 보거나 복사할 수 있습니다. <html> <div class="container"> <button class="toggle-btn">[펼치기 · 접기]</button> <div class="content"> <p>숨겨진 내용입니다.</p> </div> </div> <style> .container { width: 420px; position: relative; } .content { position: absolute; top: 100%; left: 0; width: 100%; height: 0; overflow: hidden; transition: height 0.5s ease-in-out; } .toggle-btn { margin-bottom: 10px; font-size: 14px; cursor: pointer; } </style> <script> const container = document.querySelector('.container'); const content = document.querySelector('.content'); const toggleBtn = document.querySelector('.toggle-btn'); let isCollapsed = true; toggleBtn.addEventListener('click', function() { if (isCollapsed) { content.style.height = `${content.scrollHeight}px`; toggleBtn.textContent = '[접기]'; } else { content.style.height = 0; toggleBtn.textContent = '[펼치기 · 접기]'; } isCollapsed = !isCollapsed; }); </script> </html> 이 문서에서 사용한 틀: 틀:+1 (원본 보기) 틀:-1 (원본 보기) 틀:10.24 혁명 (두 번째 유신) (원본 보기) 틀:국기그림 (원본 보기) 틀:국기그림/구현 (원본 보기) 틀:나라자료 대한민국 (원본 보기) 연습장:Sakura/1 문서로 돌아갑니다.