我使用以下设置创建了{yourUser}/.jupyter/custom/custom.css
文件:
(more examples)
.text_cell_render { /* Customize text cells */
font-family: "Arial";
font-size: 15pt;
line-height: 145%;
text-align: justify;
word-wrap: break-word;
}
.CodeMirror pre { /* Customize code cells */
font-size: 14pt;
}
我现在的问题是,除了text-align: justify;
之外,我的css的每个设置都适用于我的笔记本,这也仅适用于某些部分。
现在我的test Notebook显示了奇怪的行为,如果我插入普通文本就没有合理的文本,但如果我以某种方式格式化订单中的文本,则理由适用。
我怎样才能做到这一点?干杯!
答案 0 :(得分:0)
以下似乎有效:
.text_cell_render p {
text-align: justify;
text-justify: inter-word;
}
显然笔记本的.rendered_html p
的CSS中有一条规则会覆盖.text_cell_render
的设置。额外的" p" tag使新规则具体到足以覆盖默认值。请参阅this github thread。