Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

only border row and outside table bootstrap

I need to remove the border vertical of the table except outside as shown below with bootstrap

enter image description here

I tried

 <table class="table no-footer worker-data table-bordered"....
.table td, .table th {
      border: none;
}

But result

enter image description here

like image 344
poppy Avatar asked Aug 28 '26 07:08

poppy


1 Answers

Go with the below approach.

  • Clear the right border for first child of row.
  • Clear the left border for last child.
  • Clear right and left border for all other other child ec=xcept the first and last child of row.

Working Example

.table td:first-child, .table th:first-child {
  border-right: none;
}
.table td:last-child, .table th:last-child {
  border-left: none;
}

.table td:not(:first-child):not(:last-child),
.table th:not(:first-child):not(:last-child) {
  border-right: none;
  border-left: none;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<div class="container">
  <table class="table no-footer worker-data table-bordered">
    <thead>
      <tr>
        <th>Firstname</th>
        <th>Lastname</th>
        <th>Email</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>John</td>
        <td>Doe</td>
        <td>[email protected]</td>
      </tr>
      <tr>
        <td>Mary</td>
        <td>Moe</td>
        <td>[email protected]</td>
      </tr>
      <tr>
        <td>July</td>
        <td>Dooley</td>
        <td>[email protected]</td>
      </tr>
    </tbody>
  </table>
</div>
like image 155
Nitheesh Avatar answered Aug 30 '26 22:08

Nitheesh



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!