﻿.scrollbar {
    height: 500px;
    overflow-y: scroll;
    float: left;
    overflow-x: hidden;
}

#ex4::-webkit-scrollbar {
    width: 8px;
    background-color: #cccccc;
}

#ex4::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 10px;
}

#ex4::-webkit-scrollbar-thumb:hover {
    background-color: #999999;
    border: 1px solid #333333;
}

#ex4::-webkit-scrollbar-thumb:active {
    background-color: #666666;
    border: 1px solid #333333;
}

#ex4::-webkit-scrollbar-track {
    border: 1px gray solid;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 2px gray inset;
}

