에 의해서 Sil | 10월 25, 2023 | 프로그래밍
css <style> .box { border-radius: 5px; max-height: 0; background-color: #f1f1f1; overflow: hidden; transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out; padding: 0; } .box-open { max-height: 200px; /* 이 값은 내용의 높이에 따라 조정하실 수 있습니다. */...