html Bootstrap 4a手风琴(折叠)表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Bootstrap 4a手风琴(折叠)表相关的知识,希望对你有一定的参考价值。
.table-responsive {
.table {
.accordion-cell {
padding: 0 !important;
border: 0;
.in {
border-top: 1px solid #eceeef;
}
}
}
}
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Published</th>
<th>Comment Date</th>
</tr>
</thead>
<tbody>
<!-- Begin table row -->
<tr data-target="#accordion" data-toggle="collapse">
<!-- table-cells here -->
</tr>
<tr>
<td class="accordion-cell" colspan="5">
<div class="collapse" id="accordion" role="tabpanel">
HIDDEN STUFF
</div>
</td>
</tr><!-- / table row -->
<!-- Begin table row -->
<tr data-target="#accordion-2" data-toggle="collapse">
<!-- table-cells here -->
</tr>
<tr>
<td class="accordion-cell" colspan="5">
<div class="collapse" id="accordion-2" role="tabpanel">
HIDDEN STUFF
</div>
</td>
</tr><!-- / table row -->
</tbody>
</table>
</div>
以上是关于html Bootstrap 4a手风琴(折叠)表的主要内容,如果未能解决你的问题,请参考以下文章
Bootstrap 4:手风琴不会折叠卡片
Bootstrap 3折叠手风琴:折叠所有作品,但在保持数据父级的同时不能全部展开
Bootstrap 在悬停时折叠手风琴
修改 Twitter Bootstrap 折叠插件以保持手风琴打开
模拟点击打开 Bootstrap 折叠元素
jQuery+Bootstrap手风琴折叠菜单代码