Jak usunąć wszystkie (szczególnie zewnętrzne) granice z bootstrap table? Oto tabela bez granic wewnętrznych:Tabela Bootstrap. Jak usunąć wszystkie granice ze stołu?
HTML
<style>
.table th, .table td {
border-top: none !important;
border-left: none !important;
}
</style>
<div class="row">
<div class="col-xs-1"></div>
<div class="col-xs-10">
<br/>
<table data-toggle="table" data-striped="true">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>C</td>
<td>D</td>
</tr>
<tr>
<td>E</td>
<td>F</td>
</tr>
</tbody>
</table>
</div>
<div class="col-xs-1"></div>
</row>
http://jsfiddle.net/sba7wkvb/1/
Które style CSS muszą zostać nadpisane, aby usunąć wszelkie granice?
To działa, ale wciąż pojawiają się dwie poziome linie graniczne - [link] (http://jsfiddle.net/sba7wkvb/2/). – ytterrr