Skip to content

Instantly share code, notes, and snippets.

View umjohndacosta's full-sized avatar

John DaCosta umjohndacosta

  • Fort Lauderdale, FL
View GitHub Profile
@paulochf
paulochf / ipython_notebook_large_width.py
Last active September 22, 2022 22:22
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>
"""))