Skip to content Skip to sidebar Skip to footer

How To Get A Vertical Scrollbar In Html Output From Jupyter Notebooks

When running the following code in Jupyter Notebooks using an excel with 500 rows: import pandas as pd pd.set_option('display.min_rows', 50) pd.set_option('display.max_rows', 50) d

Solution 1:

I managed to insert CSS with help from this blog post: http://damianavila.github.io/blog/posts/mimic-the-ipython-notebook-cell-execution.html

in this way I could insert:

overflow-y: scroll;
    max-height: 500px;

in all the output cells

Post a Comment for "How To Get A Vertical Scrollbar In Html Output From Jupyter Notebooks"