WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2025 Poal.co

151

A non-wrapped table is restricted, and CSS is limited with them.

More information .

A non-wrapped table is restricted, and CSS is limited with them. More information [here](https://stackoverflow.com/questions/8232713/how-to-display-scroll-bar-onto-a-html-table).

(post is archived)

[–] 1 pt

They aren't wrapped for a reason, because on mobile, if they are too large, you'll get stuck if you scroll over one of them and release your touch.

[–] 0 pt

Really? That's a pity.

Maybe there should be a scrollable margin on the right side (if it works).

I asked about it because a table with too much width (overflow-x) flows outside of its parent element, which looks ugly.

[–] 1 pt

You can use CSS to limit the width of its columns within <td> max-width

[–] 1 pt

Here's the code:

table td, table th { max-width:20em; }

[–] 0 pt

I have already figured it out, but thanks nevertheless.

I also saved some space by reducing the paddings.