Remove the first line of a twitter bootstrap table

html, html-table, twitter-bootstrap

Solution

.table > tbody > tr:first-child > td {
    border: none;
}
@import url('http://getbootstrap.com/dist/css/bootstrap.css');

table {
    margin-top: 50px;
}

.table > thead > tr:first-child > td, 
.table > tbody > tr:first-child > td {
    border: none;
}
<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>

Problem

As you all know when you use Twitter Bootstrap to get a table you get a result like this: Would it be possible o remove the very first line of the table, the one above "Abos Girolamo"? Thanks UPDATE: Here is the code of the table: ``` <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> ```

Original source