你能帮我解决一下,如何使用CSS设计垂直滚动条...有没有办法用css或css3自定义垂直滚动条设计......在此先感谢..
答案 0 :(得分:2)
查看this网站。它为基于-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/是迄今为止我跨过的跨浏览器滚动条自定义程序的最佳示例......
答案 1 :(得分: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; }
答案 2 :(得分: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;
}