탭버튼구현

퍼블리싱/Vanilla JS

[Vanilla JS] 탭 메뉴 구현 / 버튼마다 다른 컨텐츠 보여주기

💡 목표버튼을 누르면 각각 다른 컨텐츠가 보여지는 탭 메뉴 구현 📌 HTML 1 2 3 4 📌 CSS/* reset */ ul { list-style: none; } button { border: none; } /* 컨텐츠 */ .tab_menu { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 90%; box-sizing: border-box; } .tab_menu .videoList { width: 100%; margin-bottom: 10px;} .tab_menu .videoList li .cont{ display: none; width: 100%; height: 100px; } /..

안댕이
'탭버튼구현' 태그의 글 목록