iview的table修改滚动条样式

修改iview table组件的滚动条

 /deep/::-webkit-scrollbar {
    
    
	  width: 6px; //竖轴宽度
	  height: 6px; //横轴宽度
	  background-color: #041c34;
}
/deep/::-webkit-scrollbar-track {
    
    
	  border-radius: 10px;
}
/deep/::-webkit-scrollbar-thumb {
    
    
	  background-color: #007acc;
}

猜你喜欢

转载自blog.csdn.net/weixin_42821697/article/details/123874100