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 makes the cells blend together visually. I want to add a black border like Python 3.4 used to use. Is this possible?
Asked
Active
Viewed 1,965 times
1 Answers
3
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.

James Draper
- 5,110
- 5
- 40
- 59
-
1This is perfect. Thanks! – jhourback Sep 11 '17 at 15:34