2

I have a web page I have developed that displays a horizontal scroll bar for a grid when viewed in IE and Chrome.
The scroll bar show when viewed from a desktop and even shows when viewed from Chrome on a mobile android device.
But the scroll bar does not appear on the default "internet" browser on a mobile android device.
Anyone know how to make it show?

I added overflow-x:scroll; overflow:scroll;
I also added WebKit http://www.quora.com/How-do-you-force-the-horizontal-scroll-bar-to-show-in-Safari-5 which makes it work on Chrome on the android mobile.

The solution can be jquery, css, or other. I just need a solution.

goroth
  • 2,510
  • 5
  • 35
  • 66

1 Answers1

3

NO problem.... Your welcome... :)

Final output

::-WebKit-scrollbar {
    -WebKit-appearance: none;
}

::-WebKit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -WebKit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

::-webkit-scrollbar:horizontal {
    height: 5px;
}
goroth
  • 2,510
  • 5
  • 35
  • 66
Prerak Sola
  • 9,517
  • 7
  • 36
  • 67