我创建了侧面导航栏,我想在恢复浏览器高度时不显示滚动条。
这是我的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;
}
答案 0 :(得分:0)
您可以使用此CSS属性::-webkit-scrollbar {
display:none;
}
转到特定类别。