宽度减小后如何在 JupyterLab 中将单元格居中?
How to center a cell in JupyterLab after its width is decreased?
从这个伟大的,我能够在 JupyterLab 中调整单元格的宽度。
如果我们能将单元格居中,结果就完美了。能详细说说怎么做吗?
添加 margin: 0 auto
适用于 JupyterLab 3.0:
from IPython.core.display import display, HTML
display(HTML("<style>.jp-Cell { width: 60% !important; margin: 0 auto; }</style>"))
但我认为这样的问题可能会适得其反,因为我们已经在 How to horizontally center an element.
中完美地解释了 CSS 定位
从这个伟大的
如果我们能将单元格居中,结果就完美了。能详细说说怎么做吗?
添加 margin: 0 auto
适用于 JupyterLab 3.0:
from IPython.core.display import display, HTML
display(HTML("<style>.jp-Cell { width: 60% !important; margin: 0 auto; }</style>"))
但我认为这样的问题可能会适得其反,因为我们已经在 How to horizontally center an element.
中完美地解释了 CSS 定位