Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

缺少表格相关的样式 #4

Closed
scarletsky opened this issue Feb 29, 2016 · 2 comments
Closed

缺少表格相关的样式 #4

scarletsky opened this issue Feb 29, 2016 · 2 comments

Comments

@scarletsky
Copy link
Contributor

例如

| th1 | th2 | th3 |
|-----|-----|-----|
| td1 | td2 | td3 |

会生成类似下面这样的结构~

<table>

  <thead>

    <tr>
      <th>th1</th>
      <th>th2</th>
      <th>th3</th>
    </tr>

  </thead>

  <tbody>

    <tr>
      <td>td1</td>
      <td>td2</td>
      <td>td3</td>
    </tr>

  </tbody>

</table>
@0x-leen
Copy link
Owner

0x-leen commented Feb 29, 2016

@scarletsky table样式已经加上

@scarletsky
Copy link
Contributor Author

@forsigner 试了一下,已经可以了~谢谢!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants