skip to content
w00d1f

css隐藏浏览器滚动条

/ 1 min read

Table of Contents

Chrome

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

IE/Edge

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