CSS
[CSS] 고정된 DIV 영역에 세로 스크롤바 생성하기
ᚁ ᚂ ᚃ ᚄ ᚅ
2023. 11. 24. 11:42
반응형
메뉴에서 스크롤바가 안생길때 처리방법
출처: https://rgy0409.tistory.com/4997 [친절한효자손 취미생활:티스토리]
원본
/* 사이드바 시작 */
#sidebarWrap .sidebar {
position: fixed;
overflow-y: auto;
top: 0;
left: -180px;
padding: 10px;
height: 100%;
border-radius: 0 20px 20px 0;
transition: all .2s;
box-shadow: 1px 0 5px 1px rgba(0, 0, 0, 0.5);
-ms-overflow-style: none;
scrollbar-width: none;
}
적용된것
#lnb {
width: 220px;
position: fixed;
overflow-y: auto;
height: 90%;
}
반응형