你能帮我吗,如何使用CSS设计垂直滚动条......有没有办法使用css或css3自定义垂直滚动条设计......在此先感谢......
问问题
12606 次
3 回答
3
看看这个网站。它使用-webkit-
基于浏览器的自定义滚动条。当您检查 css 文件时,很清楚使用的是什么 css。
@media only screen and (-webkit-min-device-pixel-ratio: 0) and (min-device-width: 1025px) {
html { overflow: hidden; }
body {
position: absolute;
bottom: 0;
left: 0;
right: 12px;
top: 0;
overflow-y: auto;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: block;
height: 10px;
}
::-webkit-scrollbar-button:vertical:increment {
background-color: #fff;
}
::-webkit-scrollbar-track-piece {
background-color: #eee;
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: #ccc;
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:horizontal {
width: 50px;
background-color: #ccc;
-webkit-border-radius: 3px;
}
但是,http://jscrollpane.kelvinluck.com/是迄今为止我跨越的跨浏览器滚动条定制器的最佳示例......
于 2013-01-10T09:59:48.667 回答
1
.scrollbar{ position: absolute; top: 20px; left: 85px; width: 499px;
overflow-y: scroll;
overflow-x: hidden;
padding-right: 5px;
visibility: visible;
border: thin solid white;
background-color: #336699;
scrollbar-face-color: #336699; scrollbar-3dlight-color: #336699; scrollbar-base-color: #336699;
scrollbar-track-color: #336699; scrollbar-darkshadow-color: #000; scrollbar-arrow-color: #000;
scrollbar-shadow-color: #fff; scrollbar-highlight-color: #fff; }
于 2013-01-10T09:58:53.790 回答
0
用这个
.scroll
{
display: block;
border: 1px solid gray;
padding: 10px 0px 0px 0px;
margin-top: 5px;
width: 212px;
height: 320px;
overflow-y: scroll;
background-color: white;
margin-left: 15px;
}
于 2013-01-10T09:55:15.937 回答