移动端默认显示滚动条

来源:互联网 发布:在淘宝联盟上买东西吗 编辑:程序博客网 时间:2024/05/16 15:31
.list {    overflow: hidden;    overflow-y: auto;}.list::-webkit-scrollbar-track-piece {    background-color: rgba(0, 0, 0, 0);    border-left: 1px solid rgba(0, 0, 0, 0);}.list::-webkit-scrollbar {    width: 5px;    height: 13px;    -webkit-border-radius: 5px;    -moz-border-radius: 5px;    border-radius: 5px;}.list::-webkit-scrollbar-thumb {    background-color: rgba(0, 0, 0, 0.5);    background-clip: padding-box;    -webkit-border-radius: 5px;    -moz-border-radius: 5px;    border-radius: 5px;    min-height: 28px;}.list::-webkit-scrollbar-thumb:hover {    background-color: rgba(0, 0, 0, 0.5);    -webkit-border-radius: 5px;    -moz-border-radius: 5px;    border-radius: 5px;}

0 0
原创粉丝点击