Skip to content

Fix large table horizontal scroll and prevent side-by-side tables

What does this MR do?

This pull-request fixes 2 know issues:

  1. #51731 (closed)
    A wiki table written right after another table is displayed next to it rather than on a new line

  2. #44014 (closed)
    Large tables in wikis overflow on the right rather than displaying an horizontal scroll bar

For #51731 (closed), the fix is to use display: block for markdown tables in general, rather than only when @supports (width: fit-content) passes, which would result to a display: inline-block.

For #44014 (closed), the use of width: fit-content is removed since it seems to nullify overflow-x: auto.

What are the relevant issue numbers?

Does this MR meet the acceptance criteria?

Edited by Dany Jupille

Merge request reports