通知短信+运营短信,5秒速达,支持群发助手一键发送🚀高效触达和通知客户 广告
## 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> ```