我在 this thread 中阅读了如何更改 Jupyter 笔记本的单元格 宽度 (我使用 second answer 动态执行此操作)。此方法消除了左右灰色边框。
但是,这仍然会在文档的 顶部和底部 处留下灰色边框。我怎样才能删除它,以便细胞躺在干净的石板上?
最佳答案
更新 2019/02/18 :
我建议安装 jupyterthemes
,而不是执行以下操作。这些笔记本主题很棒、漂亮且易于使用,并且消除了灰色边框。
原帖 :
因此,在笔记本上使用“Inspect Element”并学习了一点 CSS 之后,似乎以下内容会起作用
from IPython.core.display import display, HTML
display(HTML(
'<style>'
'#notebook { padding-top:0px !important; } '
'.container { width:100% !important; } '
'.end_space { min-height:0px !important; } '
'</style>'
))
其中顶线去除顶部的灰色边距,中间线去除侧边距,底线去除底部的灰色边距。
<style>
、 </style>
之间的内容也可以添加到 custom.css
中的 ~/.jupyter/custom/
文件中 this thread 之后;我的文件包含行/* Modifications to notebook format */
#notebook { padding-top:0px !important; } /* eliminate top gray */
.container { width:100% !important; } /* eliminate side gray */
.end_space { min-height:0px !important; } /* eliminate bottom gray */
关于python - 如何消除浏览器中 Jupyter/ipython 笔记本周围的灰色边框?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44298864/