1. ::-webkit-scrollbar-track {
  2. border-radius: 10px;
  3. box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  4. background-color: #fff;
  5. }
  6. ::-webkit-scrollbar { // e-ui弹出框
  7. width: 5px;
  8. height: 10px;
  9. background-color: #fff;
  10. }
  11. ::-webkit-scrollbar-thumb { // e-ui弹出框
  12. border-radius: 10px;
  13. box-shadow: inset 0 0 6px rgba(180, 180, 180, 0.3);
  14. background-color: #ddd;
  15. }

隐藏滚动条

  1. /* Hide scrollbar for Chrome, Safari, and Opera */
  2. html::-webkit-scrollbar {
  3. display: none;
  4. }
  5. /* Hide scrollbar for IE and Edge */
  6. html {
  7. -ms-overflow-style: none;
  8. }