0

I want to hide vertical scrollbar and show horizontal scrollbar in talbe in HTML. If I use:

#element::-webkit-scrollbar { 
  display: none; 
}

The result is both vertical and horizontal scrollbar are hidden. So, you can show me how to do with it ?

Bhuwan
  • 16,525
  • 5
  • 34
  • 57
KTu
  • 1
  • 1

4 Answers4

0

Try using overflow-y

#element { 
    overflow-y: hidden;
    overflow-x: scroll;
}
Claudio
  • 5,078
  • 1
  • 22
  • 33
0
#element{
   overflow-y: hidden;
   overflow-x: scroll;
   }
0

Try using overflow

#element {
    overflow:auto;
}
0

Try this code

body{
width:100%; 
height:100%;
overflow-y:hidden, 
overflow-y:scroll,
margin:0 
}
Abhishek Shah
  • 436
  • 1
  • 3
  • 12