I have a table and I want to display a vertical scrollbar on the td
when its contents are exceeding a specified height of the row.
I have this sample code but it does not display active scrollbar on y axis no matter the content.
Browsers won't apply overflow scrollbars to TD
tags. You will need to enclose the content of your table cells in a div
tag, and scroll that:
<td><div>Do you see what I meancxzdaaaaaaaaaaaaa?</div></td>
and:
td > div { overflow-y:scroll;overflow-x:hidden;}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With