首页 > 解决方案 > 如何在侧导航栏中隐藏滚动条?

问题描述

我创建了侧面导航栏,我想在恢复浏览器的高度时,根本看不到滚动条。

这是我的 CSS 代码:

.sideNavBar-icon {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 60px; 
  background-image: linear-gradient(to bottom, #6c299b 0, #5ba7b4 99%, #55d6be 10000%);
  background-repeat: no-repeat;
  position: fixed;
  overflow: scroll;
  overflow-x: hidden;
  top:70px;
  bottom: 0px;
  z-index: 1;
}

标签: csssidenav

解决方案


您可以使用此 css 属性::-webkit-scrollbar { display:none; }

到具体的班级。


推荐阅读