«
»

2012, css3

Scrollbars con css3

11.26.12 | Comment?

Alberto Suárez Pérez
#scrollbars{
                width: 780px;
                height:400px;
                overflow:auto;  
				overflow-x:hidden ;      }
            ::-webkit-scrollbar {
                width: 10px;
                height: 10px;
            }
            ::-webkit-scrollbar-button:start:decrement,
            ::-webkit-scrollbar-button:end:increment  {
                display: none;
            }
             
            ::-webkit-scrollbar-track-piece  {
                background-color: #3b3b3b;
                -webkit-border-radius: 6px;
            }
             
            ::-webkit-scrollbar-thumb:vertical {
                -webkit-border-radius: 6px;
                background: #666  no-repeat center;
            }

Comments are closed.


«
»