I have
<table class="table table-condensed">
I used to have table-bordered
in there but it is giving me the lines in between rows. I just want the top, bottom, left and right lines on the outside of the entire table and no lines in between rows.
Also, I tried to do baby steps first and therefore tried to remove the lines in between rows as suggested here Remove row lines in twitter bootstrap and the solution given
table td {
border-top: none;
}
didn't work for me
<table frame=”rhs”> FRAME=RHS (Right Hand Side *) means that there should only be an outer border on the left hand side of the table.
Add .table-borderless for a table without borders.
.table-striped. Adds zebra-striping to any table row within <tbody> (not available in IE8) Try it. .table-bordered. Adds border on all sides of the table and cells.
For anyone else seeing this recently, you can simply add border
class to your table, and that should give it the OUTER border.
<table class="table">
<thead class="table border">
<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>
<tbody>
</table>
table-borderless
would produce a table without any borders, outer or inner
<table class="table">
<thead class="table table-borderless">
<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>
<tbody>
</table>
To produce a table with the outer border only, and no innder borders, simply add both table-borderless
and border
classes to the table as such:
<table class="table">
<thead class="table border table-borderless">
<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>
<tbody>
</table>
Hope this helps anyone out there without having to use CSS etc.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With