0

I have a div with overflow:scroll , scrolling horizontally. How can I hide scrollbar of the div in css ?

Felix A J
  • 6,300
  • 2
  • 27
  • 46

2 Answers2

0

Use webkit.

.hiddenscrollbars::-webkit-scrollbar { 
    display: none; 
}

JSFiddle

freewheeler
  • 1,306
  • 2
  • 12
  • 24
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;
}

http://jsfiddle.net/vasanthanvas/zdwf0a0q/

vas
  • 962
  • 1
  • 9
  • 21