css隐藏滚动条,将宽度设置为0
.corporation{
overflow-y: scroll; // 超出滚动
&::-webkit-scrollbar{ // 隐藏滚动条将宽度设置为0
background-color: #e8eaec;
width: 0 !important;
}
}
博客介绍了使用CSS隐藏滚动条的方法,即把滚动条宽度设置为0,属于前端开发中CSS技术的应用。
css隐藏滚动条,将宽度设置为0
.corporation{
overflow-y: scroll; // 超出滚动
&::-webkit-scrollbar{ // 隐藏滚动条将宽度设置为0
background-color: #e8eaec;
width: 0 !important;
}
}
5259
4352

被折叠的 条评论
为什么被折叠?