Azure Devops Wiki Markdown Table 样式 Background/text 颜色问题
Azure Devops Wiki Markdown Table Style Background/text color problem
我正在尝试为 Azure DevOps Wiki Table 中 table 的单元格着色
我的 markdown
里有这个
|Tag|Requied/Optional |Notes |Examples |
|--|--|--|--|
| <td style="background-color:green;color:white;">1</td> | <td style="background-color:green;color:white;">2</td> | <td style="background-color:green;color:white;">3</td> | <td style="background-color:green;color:white;">4</td> |
| | | | |
| | | | |
但它看起来像这样
我想弄清楚why/where中间多余的细胞是从哪里来的,以及如何去除它们。
你可以试试内联样式
<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>
另请参阅此 SO 线程 了解更多信息。
我正在尝试为 Azure DevOps Wiki Table 中 table 的单元格着色 我的 markdown
里有这个|Tag|Requied/Optional |Notes |Examples |
|--|--|--|--|
| <td style="background-color:green;color:white;">1</td> | <td style="background-color:green;color:white;">2</td> | <td style="background-color:green;color:white;">3</td> | <td style="background-color:green;color:white;">4</td> |
| | | | |
| | | | |
但它看起来像这样
我想弄清楚why/where中间多余的细胞是从哪里来的,以及如何去除它们。
你可以试试内联样式
<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>
另请参阅此 SO 线程