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:
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
Post a Comment