他の要素と同様に、テーブルに webkit の境界線の半径スタイルを設定できることは、私の理解でした。
HTML
<table class="list-table">
<thead>
<tr>
<th>header</th>
</tr>
</thead>
<tbody>
<tr>
<td>tables are misunderstood</td>
</tr>
</tbody>
</table>
CSS
.list-table {
width: 100%;
padding: 0;
margin: 0;
text-align: center;
vertical-align: middle;
border: 4px solid red;
border-collapse: collapse;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
...だから、どこが間違っているのですか?ライブ デモについては、こちらをご覧ください: http://bootply.com/79469#