用css实现样式滚动条

用css实现样式滚动条

  1. .box{
  2. width:300px;
  3. height:300px;
  4. overflow: auto;
  5. }
  6. .box::-webkit-scrollbar {
  7. width:10px;
  8. height:10px;
  9. }
  10. ul{
  11. padding-top: 20px;
  12. -webkit-margin-before: 0em;
  13. -webkit-margin-after: 0em;
  14. }
  15. .box::-webkit-scrollbar-button {
  16. background-color:#fff;
  17. }
  18. .box::-webkit-scrollbar-track {
  19. background:#fff;
  20. }
  21. .box::-webkit-scrollbar-thumb{
  22. background:red;
  23. }
  24. .box::-webkit-scrollbar-corner {
  25. background:#82AFFF;
  26. }
  27. .box::-webkit-scrollbar-resizer {
  28. background:#FF0BEE;
  29. }
  30. .box::-webkit-scrollbar {
  31. width: 8px;
  32. }




posted @ 2016-08-21 16:17  安然儿  阅读(554)  评论(0编辑  收藏  举报