Scrollbar appearence
by tabalinas
HTML
<div id="container">
<div id="content"></div>
</div>
CSS
#container {
height: 300px;
overflow: auto;
background: black;
border: 1px solid red;
}
#content {
height: 500px;
background: lightyellow;
}