Panel components are used when you want to put your DOM component in a box. To get a basic panel, just add class .panel
to the <div>
element. Also add class .panel-default
to this element. The content inside the panel has a .panel-body
class.
Example
<div class="panel panel-default">
<div class="panel-body">A Basic Panel</div>
</div>
Preview