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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -