众所周知,当您使用Twitter Bootstrap获取表格时,您会得到如下结果:
是否可能o删除表的第一行,上面的“Abos Girolamo”?谢谢
更新:这是表的代码:
- <table class="table table-no-border">
- <tbody>
- <tr>
- <td>Abos Girolamo</td>
- </tr>
- <tr>
- <td>Aboulker Isabelle</td>
- </tr>
- <tr>
- <td>Adam Adolphe</td>
- </tr>
- </tbody>
- </table>
解决方法
- .table > tbody > tr:first-child > td {
- border: none;
- }