css 滚动条
.box {display: flex;height: 36px;overflow-x: hidden;overflow-y: hidden;//y轴进行隐藏white-space: nowrap;//文本不会换行cursor: pointer;&:hover {overflow-x: scroll;//x轴出现滚动条}}//滚动条样式::-webkit-scrollbar{height:
·
.box {
display: flex;
height: 36px;
overflow-x: hidden;
overflow-y: hidden;//y轴进行隐藏
white-space: nowrap;//文本不会换行
cursor: pointer;
&:hover {
overflow-x: scroll;//x轴出现滚动条
overflow-y: overlay;//y轴滚动条,不会挤压页面宽度
}
}
//滚动条样式
::-webkit-scrollbar
{
height: 5px;
}
更多推荐
已为社区贡献1条内容
所有评论(0)