设置滚动条的样式
// 设置滚动条样式 .content-container::-webkit-scrollbar { width: 7px; /*对垂直流动条有效*/ height: 10px; /*对水平流动条有效*/ } /*定义滚动条的轨道颜色、内阴影及圆角*/ .content-container::-webkit-scrollbar-track{ background-color: #eee; border-radius: 3px; } /*定义滑块颜色、内阴影及圆角*/ .content-container::-webkit-scrollbar-thumb{ border-radius: 7px; background-color: #ccc; }