美文网首页
markdown表格制作

markdown表格制作

作者: AndyFfeng | 来源:发表于2018-05-23 15:13 被阅读0次
表头1 表头2 表头3
Content Cell Content Cell Content Cell
Content Cell Content Cell Content Cell
表头1 表头2 表头3
Content Cell Content Cell Content Cell
Content Cell Content Cell Content Cell
名字 描述
Help Display the help window.
Close Closes a window

表格中也可以使用普通文本的删除线,斜体等效果

名字 描述
Help Display the help window.
Close Closes a window

表格可以指定对齐方式

左对齐 居中 右对齐
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1

表格中单元格合并

行合并

表头1 表头2 表头3
3 >
--- --- ---
Content Cell Content Cel Content Cell

markdown兼容html实现单元格操作

<table>
<tr>
<td>列一</td>
<td>列一</td>
</tr>
<tr>
<td colspan="2">合并行</td>
</tr>
<tr>
<td colspan="2">合并行</td>
</tr>
</table>

合并列

<table>
<tr>
<td>列一</td>
<td>列一</td>
</tr>
<tr>
<td rowspan="2"合并列</td>
<td>行</td>
</tr>
<tr>
<td>行</td>
</tr>
</table>

表格嵌套

<table>
<tr>
<td>列一</td>
<td>列一</td>
</tr>
<tr>
<td rowspan="2">
<table>
<tr>
<td>列一</td>
<td>列一</td>
</tr>
<tr>
<td rowspan="2"合并列</td>
<td>行</td>
</tr>
<tr>
<td>行</td>
</tr>
</table>
</td>
<td>行</td>
</tr>
<tr>
<td>行</td>
</tr>
</table>


表格嵌套

表头1 表头2 表头3
Content Cell Content Cell Content Cell
Content Cell Content Cell Content Cell

相关文章

  • 简书Markdown模式下,如何制作表格

    如何在Markdown模式下制作表格? 我们在文章写作中经常会用到表格,那么如何在Markdown模式下制作表格呢...

  • markdown表格制作

    表格中也可以使用普通文本的删除线,斜体等效果 表格可以指定对齐方式 表格中单元格合并 行合并 markdown兼容...

  • Markdown 表格

    Markdown 语法 基本语法 Markdown 制作表格使用 | 来分隔不同的单元格,使用 - 来分隔表头和其...

  • Markdown基本语法之简单表格操作

    简书写文使用Markdown模式,如何制作表格表格在进行文本的内容描述时,会非常清晰明了,我们在文章写作中经常会用...

  • 简书编辑器

    MarkDown编辑 编辑器调整 制作表格 格式如下第一行(标题栏)|名字|性别|第二行(定义格式)|--|--|...

  • Markdown教程 第9章 表格

    Markdown 制作表格使用 | 来分隔不同的单元格,使用 - 来分隔表头和其他行。 语法格式如下: 以上代码显...

  • Markdown 系列(六) 表格

    Markdown 制作表格使用 | 来分隔不同的单元格,使用 - 来分隔表头和其他行。这块我使用的也不是特别熟练,...

  • Markdown中table表格语法遇到竖线'|'无法转义的解决

    有时候, 我们需要在Markdown表格中插入竖线”|”但是, 在表格中Markdown语法的反斜线”\”对竖线”...

  • markdown表格

    markdown 参考: https://jmalarcon.github.io/markdowntables/

  • Markdown表格

网友评论

      本文标题:markdown表格制作

      本文链接:https://www.haomeiwen.com/subject/ntvrjftx.html