CSS vertical scrollbar padding left/right in UL possible?

后端 未结 5 994
[愿得一人]
[愿得一人] 2020-12-13 06:39

Is it possible to add padding or margin around the scrollbar item or scrollbar-track? I\'ve tried and can only get padding top/bottom. Adding padding to the UL has no effe

5条回答
  •  庸人自扰
    2020-12-13 07:26

    Another important attribute to add vertical or horizontal margin:

    ::-webkit-scrollbar-track {
      margin: 0 30px;
    }
    

提交回复
热议问题