오식랜드
[html, css] 스크롤바 숨기기 본문
반응형
.box가 overflow: scroll일 때 생기는 스크롤을 보이지 않게 하는 코드이다!
.box {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.box::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera*/
}
반응형
'dev-log > html·css·js' 카테고리의 다른 글
[css] input checkbox, radio, range, progress 색상 변경 (0) | 2022.05.04 |
---|---|
[css] select box 글자 가운데 정렬하기 (0) | 2021.08.05 |
[css motion] hover시 border 그어지는 모션 (0) | 2021.06.14 |
[javascript] new Date()를 이용해 현재 날짜, 시간 불러오기 (0) | 2021.05.28 |
[javascript] D-Day 계산기 만들기 (0) | 2021.05.28 |
Comments