Snippet/CSS ์ค๋ํซ
๐ ์คํฌ๋กค ๊ธฐ๋ฅ์ ์ด๋ฆฌ๊ณ ์คํฌ๋กค๋ฐ ๋ง ๊ฐ๋ฆฌ๊ธฐ
์ธํ_
2022. 2. 28. 20:33
์คํฌ๋กค๋ฐ ๊ฐ๋ฆฌ๊ธฐ
์คํฌ๋กค ์์ฒด ๊ธฐ๋ฅ์ ๋๋๋ฉด์ ์คํฌ๋กค๋ฐ๋ง ์์ ๋ ์ฝ๋์ด๋ค.
/* ์ ์ฒด ๊ฐ๋ฆฌ๊ธฐ */
body{
-ms-overflow-style: none;
}
::-webkit-scrollbar {
display: none;
}
/* ํน์ ๋ถ๋ถ ์คํฌ๋กค๋ฐ ์์ ๊ธฐ */
.box{
-ms-overflow-style: none;
}
.box::-webkit-scrollbar{
display:none;
}
See the Pen Hide the Scrollbar in CSS but Allow Scrolling (div) by HubSpot (@hubspot) on CodePen.