1
私は、テーブルをラップするdivブロックを避ける方法を探しています。誰もがこのブロックの動作をテーブルに適用する方法を知っていますか?ブートストラップでdivブロックを折りたたむ代わりにテーブルを折りたたむ
<div class="panel panel-primary">
<div class="panel-heading" role="tab" id="headingTwo">
<h3 class="panel-title">
<a role="button" data-toggle="collapse"
href="#collapseTwo" aria-expanded="true"
aria-controls="collapseTwo">Requests</a>
</h3>
</div>
<div id="collapseTwo" class="panel-collapse collapse in"
role="tabpanel" aria-labelledby="headingTwo">
<table class="table table-bordered">
<thead>
<tr>
<th>Date</th>
<th>Customer</th>
</tr>
</thead>
<tbody>
<tr>
<td>12/07/16</td>
<td>John Smith</td>
</tr>
</tbody>
</table>
</div>
</div>
を参照してください確認したい場合には、感謝を作品!しかし、このソリューションは残念なことに、divブロックを使用してテーブルを折りたたむことで、より多くの副作用が生じます。あなたはこのようにアニメーションを欠場します。 –
私はあなたに同意します – jonju