gpt4 book ai didi

python - 在 Jupyter Notebook 中居中 HTML 表格和文本

转载 作者:太空宇宙 更新时间:2023-11-03 14:03:28 24 4
gpt4 key购买 nike

我知道 Jupyter 使用它自己的 CSS 样式,这限制了您可以使用 HTML 执行的操作,除非您对其进行编辑。

我尝试用比 Python print 更复杂的方式显示一些信息,为此我使用:

from IPython.core.display import display, HTML
display(HTML('<center>some header text</center>')))

所有内容都左对齐 - 文本和表格。有什么简单的解决方法吗?

或者还有其他方法可以在 Jupyter Notebook 中使表格居中吗?

最佳答案

您可能需要在 html 元素中使用少量自定义 CSS。重要的一点是 style='margin: 0 auto' 例如:

from IPython.core.display import display, HTML
display(HTML("""
<table style='margin: 0 auto'>
<tr><th>Hi!</th><th>There!</th></tr>
<tr><td>1</td><td>2</td></tr>
</table>
"""))

关于python - 在 Jupyter Notebook 中居中 HTML 表格和文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49089127/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com