我有一个带有降价单元的虚拟笔记本电脑
# Projects
<div style="font-size: 50px">
hello
| Project |Project Type | Status |
|------------------------------|-------------------|-----------------------|
| Hello phase 1 |ABC |Ongoing |
| Goodbye analytics |EFG |Completed |
</div >
但是它不会增加表格中单词的字体大小,而只会增加“ Hello”的字体大小。
是否可以增加表格中单词的字体大小?谢谢。
答案 0 :(得分:5)
您需要更多CSS。尝试将以下内容而不是style=
添加到markdown文件中:
<style>
td {
font-size: 50px
}
</style>
取决于您的jupyter版本other approaches might work。
答案 1 :(得分:0)
您还可以将其添加到custom.css中:
.rendered_html table, .rendered_html td, .rendered_html th {
font-size: 200%;
}
我还认为您仅应该使用table
元素(省略td
和th
元素)就可以做到这一点。
答案 2 :(得分:0)
您可以尝试以下操作: 在单元格中添加html标记,这很烦人,但目前还是有用的
例如
|<font size=4>Project</font>|<font size=4>Project Type</font>|<font size=4>Status</font>|<br>
|---|---|---|<br>
|<font size=4>Hello phase 1</font>|<font size=4>ABC</font>|<font size=4>Ongoing</font>|<br>
|<font size=4>Goodbye analytics</font>|<font size=4>EFG</font>|<font size=4>Completed</font>|