::-webkit-scrollbar 系列属性

属性使用示例

<div>
     <div class="father">
         <div class="child">子元素,高度大于父元素,撑开父元素</div>
     </div>
</div>
<style>
.father {
    background: #eee;
    width: 400px;
    height: 600px;
    overflow-y: auto;
    margin: 50px auto;
}
.child {
    height: 700px;
    font-size: 20px;
    font-weight: bold;
}
::-webkit-scrollbar {
    /* 设置滚动条宽度 */
    width: 20px;
    /* 设置滚动条背景色 */
    background: blue;
}
</style>

滚动条基本样式设置

<div>
     <div class="father">
         <div class="child">子元素,高度大于父元素,撑开父元素</div>
     </div>
</div>
<style>
.father {
    background: #eee;
    width: 400px;
    height: 600px;
    overflow-y: auto;
    margin: 50px auto;
}
.child {
    height: 700px;
    font-size: 20px;
    font-weight: bold;
}
::-webkit-scrollbar {
    /* 设置滚动条宽度 */
    width: 20px;
    /* 设置滚动条背景色 */
    background: blue;
}
::-webkit-scrollbar-button {
	/* 滚动条上下箭头的颜色 */
    background: yellow;
}
</style>

<div>
     <div class="father">
         <div class="child">子元素,高度大于父元素,撑开父元素</div>
     </div>
</div>
<style>
.father {
    background: #eee;
    width: 400px;
    height: 600px;
    overflow-y: auto;
    margin: 50px auto;
}
.child {
    height: 700px;
    font-size: 20px;
    font-weight: bold;
}
::-webkit-scrollbar {
    /* 设置滚动条宽度 */
    width: 20px;
    /* 设置滚动条背景色 */
    background: blue;
}
::-webkit-scrollbar-button {
    /* 滚动条上下箭头的颜色 */
    background: yellow;
}
::-webkit-scrollbar-thumb {
    /* 滚动条滑块圆角 */
    border-radius: 8px;
    /* 滚动条滑块背景色 */
    background: skyblue;
}
</style>

滚动条基本样式设置

<div>
     <div class="father">
         <div class="child">子元素,高度大于父元素,撑开父元素</div>
     </div>
</div>
<style>
.father {
    background: #eee;
    width: 400px;
    height: 600px;
    overflow-y: auto;
    margin: 50px auto;
}
.child {
    height: 700px;
    font-size: 20px;
    font-weight: bold;
}
::-webkit-scrollbar {
    /* 设置滚动条宽度 */
    width: 20px;
    /* 设置滚动条背景色 */
    background: blue;
}
::-webkit-scrollbar-button {
    /* 滚动条上下箭头的颜色 */
    background: yellow;
}
::-webkit-scrollbar-thumb {
    /* 滚动条滑块圆角 */
    border-radius: 8px;
    /* 滚动条滑块背景色 */
    background: skyblue;
}
::-webkit-scrollbar-track {
    /* 滚动条轨道背景色 */
    background: orange;
    /* 滚动条轨道圆角 */
    border-radius: 10px;
}
</style>

滚动条基本样式设置

<div>
     <div class="father">
         <div class="child">子元素,高度大于父元素,撑开父元素</div>
     </div>
</div>
<style>
.father {
    background: #eee;
    width: 400px;
    height: 600px;
    overflow-y: auto;
    margin: 50px auto;
}
.child {
    height: 700px;
    font-size: 20px;
    font-weight: bold;
}
::-webkit-scrollbar {
    /* 设置滚动条宽度 */
    width: 20px;
    /* 设置滚动条背景色 */
    background: blue;
}
::-webkit-scrollbar-button {
    /* 滚动条上下箭头的颜色 */
    background: yellow;
}
::-webkit-scrollbar-thumb {
    /* 滚动条滑块圆角 */
    border-radius: 8px;
    /* 滚动条滑块背景色 */
    background: skyblue;
}
::-webkit-scrollbar-track {
    /* 滚动条轨道背景色 */
    background: orange;
    /* 滚动条轨道圆角 */
    border-radius: 10px;
}
::-webkit-scrollbar-track-piece {
    /* 滚动条轨道背景色 */
    /* 覆盖在轨道上方,黑色半透明与橙色叠加 */
    background: rgba(0, 0, 0, 0.3);
}
</style>

滚动条基本样式设置

<div>
     <div class="father">
         <div class="child">子元素,高度大于父元素,撑开父元素</div>
     </div>
</div>
<style>
.father {
    background: #eee;
    width: 400px;
    height: 600px;
    overflow-y: auto;
    margin: 50px auto;
}
.child {
    height: 700px;
    width: 700px;
    font-size: 20px;
    font-weight: bold;
}
::-webkit-scrollbar {
    /* 设置滚动条宽度 */
    width: 20px;
    /* 设置滚动条背景色 */
    background: blue;
}
::-webkit-scrollbar-button {
    /* 滚动条上下箭头的颜色 */
    background: yellow;
}
::-webkit-scrollbar-thumb {
    /* 滚动条滑块圆角 */
    border-radius: 8px;
    /* 滚动条滑块高度 */
    height: 100px;
    /* 滚动条滑块背景色 */
    background: skyblue;
}
::-webkit-scrollbar-track {
    /* 滚动条轨道背景色 */
    background: orange;
    /* 滚动条轨道圆角 */
    border-radius: 10px;
}
::-webkit-scrollbar-track-piece {
    /* 滚动条轨道背景色 */
    /* 覆盖在轨道上方,黑色半透明与橙色叠加 */
    background: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-corner {
    /* 横向、纵向滚动条的交汇背景色 */
    background: red;
}
</style>

滚动条基本样式设置

<div>
     <div class="father">
         <div class="child">子元素,高度大于父元素,撑开父元素</div>
     </div>
</div>
<style>
.father {
    background: #eee;
    /* 原始宽度为 400px,下方图示为拖拽后的样式,明显比 400px 宽 */
    width: 400px;
    height: 600px;
    /* 设置不溢出,其他滚动条样式设置会失效 */
    overflow: hidden;
    /* 父元素设置可拖拽属性 */
    resize: horizontal;
    margin: 50px auto;
}
.child {
    height: 700px;
    width: 700px;
    font-size: 20px;
    font-weight: bold;
}
::-webkit-resizer {
    /* 设置右下角可拖拽部分的背景色 */
    background: rgba(0, 0, 0, 0.3);
}
</style>

滚动条基本样式设置

基本应用

<div>
     <div class="father">
         <div class="child">子元素,高度大于父元素,撑开父元素</div>
     </div>
</div>
<style>
.father {
    background: #eee;
    width: 400px;
    height: 600px;
    overflow-y: auto;
    margin: 50px auto;
}
.child {
    height: 700px;
    font-size: 20px;
    font-weight: bold;
}
::-webkit-scrollbar {
    width: 5px;
    background: #eee;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb {
    border-radius: 3px;
    height: 100px;
    background-color: #ccc;
}
</style>

滚动条基本样式设置

兼容性

滚动条基本样式设置