CSS的一些常用样式,如背景、文字、文本、表格、列表等,以及一些常用的场景,如居中对齐、溢出、隐藏元素等。01、常用样式 1.1、background背景 设置元素背景的样式 background,更
顺晟科技
2021-08-27 11:54:06
216
css更改滚动条样式
body::-webkit-scrollbar {/*滚动条整体样式*/
width: 8px; /*高宽分别对应横竖滚动条的尺寸*/
height: 8px;
scrollbar-arrow-color:red;
}
body::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
border-radius: 5px;
-webkit-box-shadow: inset 0 0 5px rgba(218, 218, 218,0.2);
box-shadow: inset 0 0 5px rgba(218, 218, 218,0.2);
background: rgba(218, 218, 218,0.2);
scrollbar-arrow-color:red;
}
body::-webkit-scrollbar-track {/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(218, 218, 218,0.2);
box-shadow: inset 0 0 5px rgba(218, 218, 218,0.2);
border-radius: 0;
background: rgba(218, 218, 218,0.1);
}
09
2022-11
30
2022-09
15
2022-09
15
2022-09
15
2022-09
15
2022-09