jupyter/jupyter-sphinx

pandas table overflow

chenboshuo opened this issue · 3 comments

when I show tables use this extension, the columns overfolw:
image

In jupyter, the output is
image
We see it was handled by ba scrollbar.

Could you help me to solve this issue? Thanks you for your attention.

Can you please provide a minimal reproducible example (what to put in conf.py and into the document)?

We resolved this issue by adding the following css to our _static/custom.css

div.jupyter_container .output {
  overflow-x: auto;
}