gpt4 book ai didi

azure-devops - 为 Azure Wiki 中的表行着色

转载 作者:行者123 更新时间:2023-12-02 02:54:16 27 4
gpt4 key购买 nike

如何在 Azure Devops Wiki 的表格中创建彩色行?我想创建如下所示的内容

.table-striped th {
height: 45px;
background-color: #bfff00 !important;
color: #191919;
}

.table-striped tr:nth-child(even) td {
background-color: #4287f5;
}
	<div>
<table class="table-striped">
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
</tr>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
</table>
</div>

在 Azure Wiki 中创建表格的主要方式是 Markdown 表格,而我发现的是 Markdown does not support color 。也许有什么技巧?

Azure Wiki Syntax Help 我发现还支持 HTML 标签和 YAML 表,但我所能实现的一切都是通过 markdown 中的 span 标签着色:

<span style="background-color: red">57065</span>|<span style="background-color: red">4560</span>|<span style="background-color: red">I AM TABLE ROW</span>

那看起来很丑。

enter image description here

有没有办法实现完整的着色?

最佳答案

尝试使用内联样式。这里我做了一个例子:

<table style="border:ridge 4px red">
<tr style="background-color:blue;color:white;" id="ROW1">
<td style="border:ridge 4px red" >Cell 1.1</td>
<td style="border:ridge 4px red">Cell 1.2</td>
<td style="border:ridge 4px red">Cell 1.3</td>
</tr>
<tr style="background-color:yellow;color:green;" id="ROW2">
<td style="border:ridge 4px red">Cell 2.1</td>
<td style="border:ridge 4px red">Cell 2.2</td>
<td style="border:ridge 4px red">Cell 2.3</td>
</tr>
</table>

在 Azure DevOps Wiki 中看起来像这样:

enter image description here

我希望它能帮到你,但是..我强烈建议保持 Markdown 简单。请看一下这个堆栈讨论:Color in Markdown

关于azure-devops - 为 Azure Wiki 中的表行着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61423399/

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