移动端显示滚动条并调整样式


  • .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;  
  • }  

  • 免责声明!

    本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



     
    粤ICP备18138465号  © 2018-2025 CODEPRJ.COM