gpt4 book ai didi

markdown - 设置 Markdown 表格中特定单元格的背景颜色

转载 作者:行者123 更新时间:2023-12-02 09:59:53 28 4
gpt4 key购买 nike

考虑下面给出的 Markdown 表格:

| 1 | 2 | 3 |
|---|---|---|
| 4 | 5 | 6 |
| 7 | 8 | 9 |

我希望将特定单元格的背景颜色设置为红色,例如单元格 8。我发现一个论坛讨论了如何使用 HTML 设置字体颜色,但没有讨论如何设置实际的单元格背景颜色。

最佳答案

我找到了 Markdown 表格样式的示例 here与 Microsoft Visual Studio Code 预览版一起使用。

以下示例给出了此结果:

demo

## Table Styling in Markdown

<style>
.heatMap {
width: 70%;
text-align: center;
}
.heatMap th {
background: grey;
word-wrap: break-word;
text-align: center;
}
.heatMap tr:nth-child(1) { background: red; }
.heatMap tr:nth-child(2) { background: orange; }
.heatMap tr:nth-child(3) { background: green; }
</style>

<div class="heatMap">

| Everything | in this table | is Centered | and the table will only take up 70% of the screen width |
| -- | -- | -- | -- |
| This | is | a | Red Row |
| This | is | an | Orange Row |
| This | is | a | Green Row |

</div>

关于markdown - 设置 Markdown 表格中特定单元格的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26197579/

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