gpt4 book ai didi

html - 在 ipython 笔记本中,无法像往常一样隐藏表格边框

转载 作者:太空宇宙 更新时间:2023-11-03 20:43:36 25 4
gpt4 key购买 nike

以下 IPython 笔记本单元生成一个带有灰色背景和边框的表格:

from IPython.display import HTML
s="""
<style type="text/css">
table, td {
border-collapse: collapse;
border-style: hidden;
background-color: rgb(240,240,240);
}
</style>
<table>
<tr>
<td>a
<td>b
<tr>
<td>c
<td>d
</table>
"""
h = HTML(s); h

但是当相同的 html 内容(字符串 s 的内容)是纯 html 文件的整个主体时,表格具有灰色背景并且没有边框(如预期的那样)。边框属性在 IPython Notebook 中似乎无法正常工作。有什么想法吗?

另一个难题:在表格中添加一个 colgroup 并在 css 选择器中添加一个 col 会导致除了行之间的水平线之外的所有内容在 IPython notebook 中消失。

最佳答案

这将从整个表格中删除边框:
在表格 Markdown 单元格上方创建并运行一个代码单元格,其中包含以下内容:

%%html
<style>
table,td,tr,th {border:none!important}
</style>

关于html - 在 ipython 笔记本中,无法像往常一样隐藏表格边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23725638/

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