码迷,mamicode.com
首页 > Web开发 > 详细

css 之内容溢出滚动,隐藏滚动条

时间:2019-08-26 14:40:08      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:safari   使用   bar   isp   contain   one   容器   highlight   滚动   

解决火狐浏览隐藏不了滚动条问题

1.里层容器的width多17px,外层容器溢出隐藏,能兼容各个浏览器

.outContainer {
  width:350px;
  height:300px;
  overflow: hidden;
}
.inContainer {
   height:300px;
   width: 367px;
   overflow-x:hidden;
   overflow-y:scroll;
}

2.设置 scrollbar-width: none,可兼容

.outContainer {
  width:350px;
  height:300px;
  overflow: hidden;
}
.inContainer {
   height:300px;
   width: 350px;
   overflow-x:hidden;
   overflow-y:scroll;
   scrollbar-width: none;  
}
/* 使用伪类选择器 ::-webkit-scrollbar ,兼容chrome和safari浏览器 */
.inContainer::-webkit-scrollbar{
    display: none;
}
/*兼容火狐*/
.inContainer {
   scrollbar-width: none; 
}
/* 兼容IE10+ */
.inContainer { 
    -ms-overflow-style: none; 
}

html如下

<body>
    <div class="outContainer" >
        <div class="inContainer">
            <div class="inContent" ></div>
            <div class="inContent inContent2"></div>
            <div class="inContent" ></div>
        </div>
    </div>
</body>

  

  

 

css 之内容溢出滚动,隐藏滚动条

标签:safari   使用   bar   isp   contain   one   容器   highlight   滚动   

原文地址:https://www.cnblogs.com/corgisyj/p/11412168.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!