I have a div with overflow:scroll
, scrolling horizontally.
How can I hide scrollbar of the div in css ?
Asked
Active
Viewed 1,992 times
0

Felix A J
- 6,300
- 2
- 27
- 46
-
`overflow:scroll; height:200px` – vas May 20 '15 at 06:40
-
When I apply `overflow:hidden` , I can animate the `scrollLeft` . But need additional workout for touch screens to drag the div. – Felix A J May 20 '15 at 06:43
2 Answers
0
check out this
<div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
div.scroll {
background-color: #00FFFF;
width: 200px;
height: 100px;
overflow: scroll;
}

vas
- 962
- 1
- 9
- 21