Hide scrollbars in web pages

Chorme

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

IE/Edge

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

Firefox

firefox is the most troublesome of the three:

html {
    overflow: -moz-hidden-unscrollable; /*注意!若只打 hidden,chrome 的其它 hidden 会出问题*/
    height: 100%;
}

body {
	height: 100%;
	width: calc(100vw + 18px); /*浏览器滚动条的长度大约是 18px*/
	overflow: auto;
}


原文链接:https://juejin.im/post/5a6046dbf265da3e253c3534

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324815711&siteId=291194637