美文网首页
Markdown(四)-表格

Markdown(四)-表格

作者: 肖旭晖 | 来源:发表于2019-08-17 14:59 被阅读0次
    • 一、 极简方式
    姓名|性别|年龄 
    -|-|-
    张三 | 男 | 20 |
    李四 | 男 | 21 |
    王五 | 男 | 22 |
    
    姓名 性别 年龄
    张三 20
    李四 21
    王五 22
    • 二、居中对齐
    姓名|性别|年龄 
    :-:|:-:|:-: 
    张三 | 男 | 18
    李四 | 男 | 18
    
    姓名 性别 年龄
    张三 18
    李四 18
    • 三、左右对齐
    姓名 | 性别 | 年龄 
    :- | :-: | -:
    张三 | 男 | 18 
    李四 | 男 | 19 
    
    姓名 性别 年龄
    张三 18
    李四 19

    |表格分割线

    • 默认左对齐
      :- 左对齐
      :-: 居中对齐
      -: 右对齐
    • 四、 使用html表格
    <table>
        <thead>
            <tr>
                <th style="width:200px;background-color:red">姓名</th>
                <th style="width:200px;background-color:red">性别</th>
                <th style="width:200px;background-color:red">年龄</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <th>张三</th>
                <th>男</th>
                <th>18</th>
            </tr>
            <tr>
                <th>王五</th>
                <th>男</th>
                <th>19</th>
            </tr>
        </tbody>
    </table>
    
    Snip20190817_1.png

    PS:由于简书不支持html表格图,所以显示不了,有道词典,github都支持

    相关文章

      网友评论

          本文标题:Markdown(四)-表格

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