Bootstrap CSS Classes

Bootstrap CSS class .table-borderless

<table class="table table-borderless">
  <thead>
    <tr>
      <th>#</th>
      <th>First Name</th>
      <th>Last Name</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
    </tr>
  </tbody>
</table>

Preview

CSS source

/* _tables.scss:64 */
.table-borderless {
  th,
  td,
  thead th,
  tbody + tbody {
    border: 0;
  }
}

Are you tired of writing HTML by hand?

Check .table-borderless in a real project

Click one of the examples listed below to open the Shuffle Visual Editor with the UI library that uses the selected component.

More Bootstrap CSS classes in Tables category

© 2025 Shuffle. All rights reserved.