1. HTML로 NAVBAR와 LIST 준비 Navbar An item A second item A third item A fourth item And a fifth one 2. CSS .list-group{ max-height: 0; transition: max-height 1s ease-out; overflow: hidden; } .show{ max-height: 300px; transition: max-height 1s ease-in; } overflow : hidden 과 transition: max-height 1s ease-out / ease-in 1. overflow : hidden overflow CSS 단축 속성은 요소의 컨텐츠가 너무 커서 요소의 블록 서식 맥락에 맞출 수 없을 때의 처..