top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are bootstrap panels and how to create bootstrap panels?

0 votes
315 views
What are bootstrap panels and how to create bootstrap panels?
posted Jul 5, 2017 by Ramya

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

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

enter image description here

answer Jul 5, 2017 by Divya Nayak
...