ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## table > 表格类样式,仅使用于`table`标签 | className | 描述 | | --- | --- | | `mo-table` | 默认样式 | | `mo-table--bordered` | 有边框的表格 | | `mo-table--responsive`| 响应式表格 | ### 示例 ```html <table class="mo-table"> <thead> <tr> <th>col1</th> <th>col2</th> <th>col3</th> <th>col4</th> </tr> </thead> <tbody> <tr> <td>col1</td> <td>col2</td> <td>col3</td> <td>col4</td> </tr> </tbody> </table> ```