近期在做pc端的項(xiàng)目遇到頁(yè)面出現(xiàn)滾動(dòng)條,下面是如何去掉并保留滾動(dòng)條的樣式
div::-webkit-scrollbar{
width: 0px;
background: none;
}
元素::-webkit-scrollbar
如果是body去掉滾動(dòng)條就是:
body::-webkit-scrollbar
div::-webkit-scrollbar{
width: 0px;
background: none;
}
元素::-webkit-scrollbar
如果是body去掉滾動(dòng)條就是:
body::-webkit-scrollbar