【发布时间】:2022-01-23 17:54:34
【问题描述】:
我有一个带有此滚动条的 div see the image here
但我想要这种类型的滚动用于我的 div see the image here
【问题讨论】:
我有一个带有此滚动条的 div see the image here
但我想要这种类型的滚动用于我的 div see the image here
【问题讨论】:
我不确定是否所有网络浏览器的反应方式都相同,但您可以试试这个:
<style>
/* width */
::-webkit-scrollbar {
width: 20px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: red;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #b30000;
}
</style>
来源:https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_scrollbar2
【讨论】:
【讨论】: