html - How to prevent the vertical scroll of this div? -


i not css , have following problem.

i have following situation: page have large table (that horizontally truncated because not entered in page).

so solve issue put table scrollable div, this:

<div style="overflow-x: scroll;">     // div there original table </div> 

so have used overflow-x: scroll; property because want content of div horizontally scrollable (not vertically). problem obtain output:

enter image description here

as can see div content result scrollable vertically , don't want it. can't post fiddle because inner table rendered tag library.

how can fix issue , obtain horizzontal scroll? missing?

tnx

try

<div style="overflow-x: scroll; overflow-y:hidden;">     // div there original table </div> 

Comments

Popular posts from this blog

symfony - TEST environment only: The database schema is not in sync with the current mapping file -

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -