Platform: web, mobile
What happened: Sufficiently large HTML tables are partially displayed. A css issue. Not the case with markdown tables
What I expected: overflow-x to be scroll/auto
Steps to reproduce: Make a large enough table
Table:
Click to open HTML table
| Format | Markdown | BBCode | HTML | Rendered Result |
|---|---|---|---|---|
| Audio | ❌ | ❌ | <audio src="audio.mp3" controls></audio> |
See Here |
| Blockquote | > Text |
🔒 | <blockquote>Text</blockquote> |
Text |
| Bold | **Text** |
[b]Text[/b] |
<b>Text</b>, <strong>Text</strong> |
Text |
| Checklist | [] [X] |
❌ | 🔒 | [ ] [x] |
| Date/Time | ❌ | See Here | 🔒 | [date=2025-05-22 timezone="America/New_York"] |
| Emoji | :EmojiName: |
❌ | Emoji directly |
😄 |
| Heading 1 | # Text |
❌ | <h1>Text</h1> |
Text |
| Hide Details | ❌ | [details] |
<details> |
Displayed TextHidden Text |
| Hidden Text | ❌ | ❌ | [comment], <!-- Text --> |
See Here |
| Highlight | 🔒 | ❌ | <mark>Text</mark> |
Text |
| Horizontal Rule | --- |
❌ | <hr> |
✖️ |
| Image |  |
[img]example.com[/img] |
<img src="https://example.com" alt="ImageName" width="200" height="100"> |
![]() |
| Italics | *Text* |
[i]Text[/i] |
<i>Text</i>, <em>Text</em> |
Text |
| Keybind | ❌ | ❌ | <kbd>Key</kbd> |
Ctrl |
| Large Text Size | ❌ | ❌ | <small>Text <small>Text</small></small> |
Text Text |
| Line Break | Natively supported | ❌ | <br> |
Text Text Text Text |
| Link | [Display Text](example.com) |
[url]http://example.com[/url] |
<a href="https://example.com">Display Text</a> |
Display Text |
| List | * , 1. |
❌ | 🔒 | ✖️ |
| Marked Delete | ❌ | ❌ | <del>Text</del> |
|
| Marked Insert | ❌ | ❌ | <ins>Text</ins> |
Text |
| Mentions | @username |
❌ | ❌ | @ioi |
| Preformatted Text/Code | `Text` |
[code]Text[/code] |
<code>Text</code>, <pre>Text</pre> |
Text |
| Quote | ❌ | [quote="username, post: PostNumber, topic: TopicNumber, full=true/false"] Quoted Text [/quote] |
❌ | See Here |
| Small Text Size | ❌ | ❌ | <big>Text</big> |
Text |
| Strikethrough | ~~Text~~ |
[s]Text[/s] |
<s>Text</s> |
|
| Structuring/Grouping | Natively supported | ❌ | <div> |
✖️ |
| Superscript | 🔒 | ❌ | Text<sup>Text</sup> |
Text Text |
| Subscript | 🔒 | ❌ | Text<sub>Text</sub> |
Tex tText |
| Tables | See Here | ❌ | See Here | ✖️ |
| Underline | 🔒 | [u]Text[/u] |
❌ | Text |
| Video | https://www.youtube.com/.... |
❌ | <video src="video.mp4" controls></video> |
✖️ |
Click to open markdown table
| Format | Markdown | BBCode | HTML | Rendered Result |
|---|---|---|---|---|
| Audio | <audio src="audio.mp3" controls></audio> |
See Here | ||
| Blockquote | > Text |
<blockquote>Text</blockquote> |
Text | |
| Bold | **Text** |
[b]Text[/b] |
<b>Text</b>, <strong>Text</strong> |
Text |
| Checklist | [] [X] |
|||
| Date/Time | See Here | 2025-05-22T04:00:00Z | ||
| Emoji | :EmojiName: |
Emoji directly |
||
| Heading 1 | # Text |
<h1>Text</h1> |
Text | |
| Hide Details | [details] |
<details> |
Displayed TextHidden Text |
|
| Hidden Text | [comment], <!-- Text --> |
See Here | ||
| Highlight | <mark>Text</mark> |
Text | ||
| Horizontal Rule | --- |
<hr> |
||
| Image |  |
[img]example.com[/img] |
<img src="https://example.com" alt="ImageName" width="200" height="100"> |
![]() |
| Italics | *Text* |
[i]Text[/i] |
<i>Text</i>, <em>Text</em> |
Text |
| Keybind | <kbd>Key</kbd> |
Ctrl | ||
| Large Text Size | <small>Text <small>Text</small></small> |
Text Text | ||
| Line Break | Natively supported | <br> |
Text Text Text Text |
|
| Link | [Display Text](example.com) |
[url]http://example.com[/url] |
<a href="https://example.com">Display Text</a> |
Display Text |
| List | * , 1. |
|||
| Marked Delete | <del>Text</del> |
|||
| Marked Insert | <ins>Text</ins> |
Text | ||
| Mentions | @username |
@ioi | ||
| Preformatted Text/Code | `Text` |
[code]Text[/code] |
<code>Text</code>, <pre>Text</pre> |
Text |
| Quote | [quote="username, post: PostNumber, topic: TopicNumber, full=true/false"] Quoted Text [/quote] |
See Here | ||
| Small Text Size | <big>Text</big> |
Text | ||
| Strikethrough | ~~Text~~ |
[s]Text[/s] |
<s>Text</s> |
|
| Structuring/Grouping | Natively supported | <div> |
||
| Superscript | Text<sup>Text</sup> |
Text Text | ||
| Subscript | Text<sub>Text</sub> |
Tex tText | ||
| Tables | See Here | See Here | ||
| Underline | [u]Text[/u] |
Text | ||
| Video | https://www.youtube.com/.... |
<video src="video.mp4" controls></video> |
||
| |
Can confirm its not the <div align=center> or hiding the table under <details>
