滚动条手柄的固定高度
Fixed height for scrollbar handle
我试图让滚动条的手柄保持固定高度,使其成为一个 30px x 30px 的正方形,但 height 命令只会使其大于默认大小并将高度设置为小于此值没有效果。
::-webkit-scrollbar {
width: 30px;
}
::-webkit-scrollbar-track {
background-color: green;
}
::-webkit-scrollbar-thumb {
height: 30px;
background-color: red;
}
<div id="container">
<ul id="list1">
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
</ul>
</div>
顺便说一下,我从来不知道这是可能的,这对我来说也是一个学习过程:}
#list1 {
overflow-y: scroll;
/* Setting overflow-y does the trick here, since the scrollbar is native
to the unordered list only -- as you will see below */
height: 100px;
/* Based on the fiddle, this height determines the state of the scrollbar */
}
/* Increasing specifity(using #list1), ensures the scrollbar sytling affects
the area within the #list1 only making it native to those elements only */
/* It would still work either way but its best to contain it for the specific element */
#list1::-webkit-scrollbar-track {
background-color: steelblue;
width: 30px;
}
#list1::-webkit-scrollbar {
width: 30px;
background-color: green;
}
#list1::-webkit-scrollbar-thumb {
background-color: red;
height: 30px;
}
<div id="container">
<ul id="list1">
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
</ul>
</div>
另请注意,Whosebug 的 "snippet view" 区域设置了最大高度,因此它可能会影响此处的结果,这就是为什么您会看到高度设置为 100px
的原因,因此它可以位于该范围内snippet area ... 由于滚动条仅在 #list
div 块中是原生的,因此需要为其分配一个高度并获得结果。
在不同的工作区试试,比如你自己的编辑器,然后在无序列表中添加更多元素,看看它是否仍然有效
我试图让滚动条的手柄保持固定高度,使其成为一个 30px x 30px 的正方形,但 height 命令只会使其大于默认大小并将高度设置为小于此值没有效果。
::-webkit-scrollbar {
width: 30px;
}
::-webkit-scrollbar-track {
background-color: green;
}
::-webkit-scrollbar-thumb {
height: 30px;
background-color: red;
}
<div id="container">
<ul id="list1">
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
</ul>
</div>
顺便说一下,我从来不知道这是可能的,这对我来说也是一个学习过程:}
#list1 {
overflow-y: scroll;
/* Setting overflow-y does the trick here, since the scrollbar is native
to the unordered list only -- as you will see below */
height: 100px;
/* Based on the fiddle, this height determines the state of the scrollbar */
}
/* Increasing specifity(using #list1), ensures the scrollbar sytling affects
the area within the #list1 only making it native to those elements only */
/* It would still work either way but its best to contain it for the specific element */
#list1::-webkit-scrollbar-track {
background-color: steelblue;
width: 30px;
}
#list1::-webkit-scrollbar {
width: 30px;
background-color: green;
}
#list1::-webkit-scrollbar-thumb {
background-color: red;
height: 30px;
}
<div id="container">
<ul id="list1">
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
<li>Item 1</li>
</ul>
</div>
另请注意,Whosebug 的 "snippet view" 区域设置了最大高度,因此它可能会影响此处的结果,这就是为什么您会看到高度设置为 100px
的原因,因此它可以位于该范围内snippet area ... 由于滚动条仅在 #list
div 块中是原生的,因此需要为其分配一个高度并获得结果。
在不同的工作区试试,比如你自己的编辑器,然后在无序列表中添加更多元素,看看它是否仍然有效