I have created a div with scroll. But scroll bar is hiding when the mouse pointer is away from the screen. Is there any possibility to show the scrollbar is showing there regardless of my mouse is hovering or no.?? I tried it with Mozilla Firefox and chrome.
when you begin to scroll the scroll bar is appear. After you finish it will disappear.
.scroll-div{
width:200px;
height:100px;
overflow-y:scroll;
}
.scroll-div::-webkit-scrollbar {
/* This is the magic bit */
display: block;
}
<div class="scroll-div">
test<br/>
test<br/>
test<br/>
test<br/>
test<br/>
test<br/>
test<br/>
test<br/>
test<br/>
test<br/>
test<br/>test<br/>
test<br/>
test<br/>
test<br/>
test<br/>test<br/>
test<br/>
test<br/>
test<br/>
</div>