How To Include Border Around Cells When Using IPython.display Of Pandas Table In Jupyter Notebook
In Python 3.4, the cells were easy to see because they had a black border around them. In Python 3.5, the this border has been replaced with a more subtle white/grey shading, which
Solution 1:
You can add something like this to your .jupyter\custom\custom.css
file:
.rendered_html table, .rendered_html th, .rendered_html tr, .rendered_html td {
border: 1px black solid !important;
color: black !important;
}
You can read more about customizing jupyter notebook here.
Post a Comment for "How To Include Border Around Cells When Using IPython.display Of Pandas Table In Jupyter Notebook"