WONDER's Blog

  • Home
  • Tags
  • Categories
  • Archives
  • Search
  • Table of Contents
  • Overview
  1. 1. css隐藏浏览器滚动条
    1. 1.1. Chrome
    2. 1.2. IE/Edge

WONDERlust91

又是一个艳阳天
145 posts
39 categories
259 tags

css隐藏浏览器滚动条

Posted on 2018-11-18 Edited on 2025-05-06 In css

css隐藏浏览器滚动条

Chrome

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

IE/Edge

body {
    -ms-overflow-style: none;
}
# css # 隐藏滚动条
css子元素设置width或height为百分之百再设置margin或padding溢出
javascript判断类型
© 2025 WONDERlust91
Powered by Hexo & NexT.Mist
0%