Panel Content. This table is really cool. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, ipsa, sunt ratione tempora omnis aliquam consectetur mollitia debitis ipsum consequatur vel possimus officia iusto error magnam et inventore modi quae.
# | Table Heading | Table Heading |
---|---|---|
1 | Table Row | Table Row |
2 | Table Row | Table Row |
3 | Table Row | Table Row |
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">
Panel Title
</div>
<div class="panel-body">...</div>
<!-- Table -->
<table class="table">
...
</table>
</div>
If there isn't a .panel-body
, the .panel-heading
moves to the top of the table.
# | Table Heading | Table Heading |
---|---|---|
1 | Table Row | Table Row |
2 | Table Row | Table Row |
3 | Table Row | Table Row |
<div class="panel panel-default">
<!-- Default panel contents -->
<div class="panel-heading">Panel Title</div>
<div class="panel-body">...</div>
<!-- Table -->
<table class="table">
...
</table>
</div>