obsidian表格列宽
时间: 2023-12-21 08:05:33 浏览: 620
在 Obsidian 中,你可以使用 Markdown 表格来创建表格。如果你想要设置表格列的宽度,可以使用 HTML 的 `colgroup` 和 `col` 标签来实现。具体步骤如下:
1. 在 Markdown 表格前插入 `colgroup` 标签,并在其中插入 `col` 标签,如下所示:
```markdown
<colgroup>
<col style="width: 50%;">
<col style="width: 25%;">
<col style="width: 25%;">
</colgroup>
| Column 1 | Column 2 | Column 3 |
| -- | -- | -- |
| Row 1 | Row 1 | Row 1 |
| Row 2 | Row 2 | Row 2 |
```
在上面的例子中,我们设置了三列,分别占据表格宽度的 50%、25% 和 25%。
2. 在 `col` 标签中使用 `style` 属性来设置列的宽度。例如,`<col style="width: 50%;">` 表示该列占据表格宽度的 50%。
下面是一个完整的例子:
```markdown
<colgroup>
<col style="width: 50%;">
<col style="width: 25%;">
<col style="width: 25%;">
</colgroup>
| Column 1 | Column 2 | Column 3 |
| -- | -- | -- |
| Row 1 | Row 1 | Row 1 |
| Row 2 | Row 2 | Row 2 |
```
你可以根据需要调整 `col` 标签中的 `style` 属性来设置不同的列宽度。
阅读全文