Skip to content Skip to sidebar Skip to footer

How Can I Avoid The Horizontal Scrollbar In A Rest Table?

I have this table in ReST markup: +---------------------------+-----------------------------------------------------------------+ | Option Line Kind | Distinguishing Chara

Solution 1:

Add a _static/custom.css file with

.wy-table-responsivetabletd {
white-space: normal;
}

Don't forget to declare it into conf.py:

defsetup(app):
        app.add_stylesheet('custom.css')

Works in my test…

Solution 2:

You can use CSS property for table:

Overflow-x : hidden;
overflow-y : hidden;

Post a Comment for "How Can I Avoid The Horizontal Scrollbar In A Rest Table?"