I know that Jupyter is using it's own CSS style which limits what you can do with HTML unless you edit it.
I try to display some info with more sophisticated way than Python print and for that I use:
from IPython.core.display import display, HTML display(HTML('<center>some header text</center>'))) Everything is left aligned though - both text and tables. Is there any simple workaround for this?
Or is there any other way to have centered tables in Jupyter Notebook?