如何更改Jupyter笔记本电脑左侧部分的宽度?

时间:2017-10-20 15:28:46

标签: python ipython jupyter-notebook ipython-notebook jupyter

我已经使用此

增加浏览器上jupyter笔记本电脑的单元格宽度
.container {
    width:100% !important;
}

但是,我还想缩小文本单元格的左侧部分。

enter image description here

对于上面的图片,我想缩小部分div.prompt.input_prompt

是否可以用css做到这一点?如何?

另外,如果可以这样做,如何为所有非代码单元格自动清空左侧部分?

2 个答案:

答案 0 :(得分:0)

提示宽度在notebook/static/notebook/less/cell.less#L80中设置,因此您可以执行以下操作:

/* Narrow the prompts */
.prompt {
    min-width: 10ex;
}

/* Hide prompts altogether for non-conda cells */
.cell:not(.code_cell) .prompt {
    display: none;
}

答案 1 :(得分:0)

from IPython.core.display import display, HTML
display(HTML("<style>.prompt_container{display:none !important}</style>"))

enter code here将隐藏所有单元格的左侧部分,并提供更多的工作空间,例如:-enter image description here