关于后台管理系统导航菜单的滚动条样式修改的问题

给外层包裹一层aside 或者 div 加样式:

如果不想要滚动条将宽度设为 0 滚动条照样可以滑动

.test1::-webkit-scrollbar {

width: 8px;

height: 8px;

}

.test1::-webkit-scrollbar-track {

opacity: 0;

transition: opacity 0.12s ease-out;

-webkit-border-radius: 2em;

-moz-border-radius: 2em;

border-radius: 2em;

}

.test1::-webkit-scrollbar-thumb {

/* background-color: rgb(178, 177, 176); */

background-color: hsla(220, 4%, 58%, 0.3);

/* opacity: 0; */

transition: background-color 0.3s;

-webkit-border-radius: 2em;

-moz-border-radius: 2em;

border-radius: 2em;

}

 

你可能感兴趣的:(CSS)