STUDY/CSS

[CSS] 스크롤바 없애기

bottlesun 2022. 11. 25. 09:43

-ms-overflow-style: none;

::-webkit-scrollbar {display: none;}

풀 페이지나 스크롤 바 부분이 없었으면 하는 상황에서 유용한 코드이다.
기능은 그대로이나 보이지 않게 설정 할 수 있다.

    <style>
        body {
            -ms-overflow-style: none;
        }

        ::-webkit-scrollbar {
            display: none;
        }

        /*특정 부분 스크롤바 없애기*/
        .box {
            -ms-overflow-style: none;
        }

        .box::-webkit-scrollbar {
            display: none;
        }
    </style>
728x90