A trick to fill the browser with the width of Jupyter Notebook.
~/.jupyter/custom/custom.css
Add the following to.
@media (min-width: 768px) {
.container {
width: 98%;
}
}
@media (min-width: 992px) {
.container {
width: 98%;
}
}
@media (min-width: 1200px) {
.container {
width: 98%;
}
}
By doing this, it seems that you can overwrite the pixel-specified width setting described in ... / site-packages / notebook / static / style / style.min.css.
Note that you will need to restart Jupyter's server after making any changes.
Recommended Posts