Search code examples
wikitext

Scrollable table in wikitext


In my company we use an internal wiki and I need to add a table but the table is very large, more than 100 columns, therefore when you want to see all the datas you can scroll horizontally but it is all the page that scrolls. Is there a way in wikitext to make scrollable the table only ?


Solution

  • The overflow property needs to be on the parent of the table or to a simple div that wrap the table.

    <div style="overflow-x: scroll">
    {|
    ...
    |}
    </div>