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

gcc - MinGW's ld cannot perform PE operations on non PE output file -

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

c# - Search and Add Comment with OpenXML for Word -