I want to make image scroller where image can be scrolled horizontally but dont want horizontal scroll bar to be visible while scrolling. Below is the link to my codepen..
http://codepen.io/rajMrPerfect/pen/PWewRM?editors=0100
<div class="scroll">
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
<img src="http://placehold.it/100x100" />
</div>
.scroll {
height: 180px;
margin: auto;
overflow-x: auto;
overflow-y:hidden;
white-space: nowrap;
box-shadow: 0 0 10px #000;
img {
margin: 20px 10px 0 10px;
}
}