Hi this regarding jquery plugin perfect-scrollbar.
I want a gap between two scrollbar.
HTML:
<div class="container">
<div class="content"></div>
</div>
CSS:
.container {
width: 400px;
height: 300px;
margin: 50px auto 0 auto;
position: relative;
overflow: auto;
}
.content {
background: url('https://noraesae.github.io/perfect-scrollbar/azusa.jpg') top left no-repeat;
width: 1280px;
height: 720px;
}
JS:
$('.container').perfectScrollbar();
See the demo here
https://jsfiddle.net/DanielApt/gbfLazpx/
Any help much appreciated.