当前位置:网站首页>滚动条 scrollbar 和scrollbar-thumb 样式
滚动条 scrollbar 和scrollbar-thumb 样式
2022-08-03 05:22:00 【tengyuxin】
效果图如下

具体代码如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
height: 400px;
width: 400px;
background-color: aquamarine;
overflow-y: scroll;
}
.box p{
height: 150px;
}
/*修饰滚动条写法*/
.box::-webkit-scrollbar {
background-color: rgb(122, 178, 238);
width: 20px;
}
.box::-webkit-scrollbar-thumb{
border-radius:5px;
background-color:rgb(19, 80, 142);
width: 11px;
}
</style>
</head>
<body>
<div class="box">
<p>小李子</p>
<p>小李子</p>
<p>小李子</p>
<p>小李子</p>
</div>
</body>
</html>
边栏推荐
- 7.16(6)
- MySQL 优化建议详解
- C语言简单实现扫雷小游戏
- 关于semantic-ui的cdn失效问题(怎样通过本地引用semantic-ui)
- 中国人力资源服务行业投资建议与前景战略规划研究报告2022~2028年
- 中国生活垃圾处理行业十四五规划与投融资模式分析报告2022~2028年
- EIP-5058 能否防止NFT项目方提桶跑路?
- Browser multi-threaded off-screen rendering, compression and packaging scheme
- 用C语言来实现五子棋小游戏
- Invalid signature file digest for Manifest main attributes解决方法
猜你喜欢
随机推荐
动态调整web系统主题? 看这一篇就够了
jsp通过form表单提交数据到servlet报404
Ansible installation and deployment detailed process, basic operation of configuration inventory
布尔盲注需简化代码
【CSRF,SSRF,XXE,PHP反序列化,Burpsuite】
中国融资租赁行业市场投资分析与前景战略规划建议报告2022~2028年
Qlik Sense 赋值详解(Set、Let)
Mysql 预准备语句详解(prepare、execute、deallocate)
Execute the mysql script file in the docker mysql container and solve the garbled characters
MySQL 安装报错的解决方法
【IDEA】字体修改-护眼主题-文件注释头设置
【HQL】(一)json字符串处理json_tuple和get_json_object
中国磷化铟晶圆行业发展前景与投资规划分析报告2022~2028年
MySQL 一些函数
7.17(7)
Oracle 密码策略详解
运行 npm run xxx 如何触发构建命令以及启动Node服务等功能?
嵌入式实验二
spark sql 报错 Can‘t zip RDDs with unequal numbers of partitions
Oracle 分区索引详解(local、global)








