Skip to content

Instantly share code, notes, and snippets.

@paulochf
Last active September 22, 2022 22:22
Show Gist options
  • Star 49 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save paulochf/f6c9ed0b39f85dd85270 to your computer and use it in GitHub Desktop.
Save paulochf/f6c9ed0b39f85dd85270 to your computer and use it in GitHub Desktop.
IPython/Jupyter Notebook enlarge/change cell width
from IPython.display import display, HTML
display(HTML(data="""
<style>
div#notebook-container { width: 95%; }
div#menubar-container { width: 65%; }
div#maintoolbar-container { width: 99%; }
</style>
"""))
@skinnedpanda
Copy link

Awesome, I want to give you a hug!

@kauttoj
Copy link

kauttoj commented May 14, 2021

But here is the other question: how do you extend the default height of a cell so that you don't get the scrollbar on the right side (so you can see an entire chart, for example, that you want to make fairly large).

Same question. How do you adjust height, e.g., setting a specific pixel count?

@paulochf
Copy link
Author

@kauttoj should be CSS: height: Kpx;, for K in real numbers.

@PavelEprines
Copy link

Thank you so much

@robertplata
Copy link

Please forgive my naivete, but how and where does one execute:
from IPython.display import display, HTML

display(HTML(data="""

<style> div#notebook-container { width: 95%; } div#menubar-container { width: 65%; } div#maintoolbar-container { width: 99%; } </style>

"""))
??

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment