I have a div
and I want it to be scrollable just vertically but visible horizontally.
I decide to set it's overlowX to visible and it's overflowY to scroll and it works well in IE8, Firefox, but not in Chrome.
Here is what I did to my div
<div id="myDiv" style="overflow-x:visible; overflow-y:scroll">
</div>
Anyone knows how to fix it or having another solution to make my div to be as what I want?