freeCodeCamp/guide/english/bootstrap/panels/index.md

2.5 KiB

title
Panels

Panels

The Bootstrap framework provides you with a feature called panels. A panel is a box that has a styled heading and then a body that allows you to display information in an organized manner, through a set of one or more panels.

Panels were dropped in Bootstrap 4 in favor of cards, as were thumbnails and wells. Relevant section of the Bootstrap 4 migration guide here

How To Use:

To use Bootstrap Panels you add a <div> with a class for your type of panel (class panel panel-default or something similar, see the panel examples for more information.) and then two nested <div> tags, one for the heading (class panel panel-heading) and one for the body (class panel panel-body). You may find that the Code Example is easier to understand than a written explanation.

Panel Examples:

This is a set of examples that shows each type of panel. The CSS Class is displayed above each example.

  • default
<div class="panel panel-default">
  <div class="panel panel-heading">Panel Default</div>
  <div class="panel panel-body"> This is a panel with the default panel style.</div>
</div>
  • primary
<div class="panel panel-primary">
  <div class="panel panel-heading">Panel Primary</div>
  <div class="panel panel-body"> This is a panel with the primary panel style.</div>
</div>
  • success
<div class="panel panel-success">
  <div class="panel panel-heading">Panel Success</div>
  <div class="panel panel-body"> This is a panel with the success panel style.</div>
</div>
  • info
<div class="panel panel-info">
  <div class="panel panel-heading">Panel Info</div>
  <div class="panel panel-body"> This is a panel with the info panel style.</div>
</div>
  • warning
<div class="panel panel-warning">
  <div class="panel panel-heading">Panel Warning</div>
  <div class="panel panel-body"> This is a panel with the warning panel style.</div>
</div>
  • danger
<div class="panel panel-danger">
  <div class="panel panel-heading">Panel Danger</div>
  <div class="panel panel-body"> This is a panel with the danger panel style.</div>
</div>  
  • For v4.0.0 components like Panels, thumbnails, and wells are dropped entirely for the new card component.

More Information