When updating the theme of Jupyter Notebook, there will be incomplete display. This is because Jupyter Notebook is not displayed in the same proportion as the browser after running. You can solve the problem by following the steps:

Open the custom.css file

div.output_area {

display:-webkit-box;

}

Add the padding:13px under this style; The modified style is

div.output_area {

display:-webkit-box;

padding: 13px;

}

Then run the Jupyter notebook again (13px May still not be displayed completely, you can try again with some other numbers).

For more free technical information: annalin1203