在 Jupyter Notebook 中使用 IPython.display of Pandas table 时如何在单元格周围包含边框
How to include border around cells when using IPython.display of Pandas table in Jupyter Notebook
在 Python 3.4 中,单元格很容易看到,因为它们周围有黑色边框。在 Python 3.5 中,此边框已替换为更微妙的 white/grey 阴影,这使得单元格在视觉上融合在一起。我想加一个黑边,就像Python 3.4 以前用的那样。这可能吗?
您可以将这样的内容添加到您的 .jupyter\custom\custom.css
文件中:
.rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td {
border: 1px black solid !important;
color: black !important;
}
您可以阅读有关自定义 jupyter notebook 的更多信息here。
在 Python 3.4 中,单元格很容易看到,因为它们周围有黑色边框。在 Python 3.5 中,此边框已替换为更微妙的 white/grey 阴影,这使得单元格在视觉上融合在一起。我想加一个黑边,就像Python 3.4 以前用的那样。这可能吗?
您可以将这样的内容添加到您的 .jupyter\custom\custom.css
文件中:
.rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td {
border: 1px black solid !important;
color: black !important;
}
您可以阅读有关自定义 jupyter notebook 的更多信息here。