2023年6月20日发(作者:)

css修改滚动条默认样式

  页⾯HTML:  1

2
3

这是内容111

4

这⾥是内容222

5

这⾥是内容333

6
7

  css代码:   1 .inner{ 2 width: 265px; 3 height: 400px; 4 position: absolute; 5 top: 33px; 6 left: 13px; 7 /*cursor: pointer;*/ 8 overflow:hidden; 9 }10 .innerbox{11 overflow-x: hidden;12 overflow-y: auto;13 color: #000;14 font-size: .7rem;15 font-family: "5FAE8F6F96C59ED1",Helvetica,"⿊体",Arial,Tahoma;16 height: 100%;17 }18 /*滚动条样式*/19 .innerbox::-webkit-scrollbar {/*滚动条整体样式*/20 width: 4px; /*⾼宽分别对应横竖滚动条的尺⼨*/21 height: 4px;22 }23 .innerbox::-webkit-scrollbar-thumb {/*滚动条⾥⾯⼩⽅块*/24 border-radius: 5px;25 -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);26 background: rgba(0,0,0,0.2);27 }28 .innerbox::-webkit-scrollbar-track {/*滚动条⾥⾯轨道*/29 -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);30 border-radius: 0;31 background: rgba(0,0,0,0.1);32 }

2023年6月20日发(作者:)

css修改滚动条默认样式

  页⾯HTML:  1

2
3

这是内容111

4

这⾥是内容222

5

这⾥是内容333

6
7

  css代码:   1 .inner{ 2 width: 265px; 3 height: 400px; 4 position: absolute; 5 top: 33px; 6 left: 13px; 7 /*cursor: pointer;*/ 8 overflow:hidden; 9 }10 .innerbox{11 overflow-x: hidden;12 overflow-y: auto;13 color: #000;14 font-size: .7rem;15 font-family: "5FAE8F6F96C59ED1",Helvetica,"⿊体",Arial,Tahoma;16 height: 100%;17 }18 /*滚动条样式*/19 .innerbox::-webkit-scrollbar {/*滚动条整体样式*/20 width: 4px; /*⾼宽分别对应横竖滚动条的尺⼨*/21 height: 4px;22 }23 .innerbox::-webkit-scrollbar-thumb {/*滚动条⾥⾯⼩⽅块*/24 border-radius: 5px;25 -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);26 background: rgba(0,0,0,0.2);27 }28 .innerbox::-webkit-scrollbar-track {/*滚动条⾥⾯轨道*/29 -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);30 border-radius: 0;31 background: rgba(0,0,0,0.1);32 }