```
> You can see that the title is highlighted by a different color than the content.
---
### Panel's title
.breadcrumbs[
]
Panels being block of content, you might want to indicate what is its actual content.
For doing so, you can use a **panel heading**.
Create a new `
` witht the `.panel-heading` class, and place your text inside:
> The new `div.panel-heading` must be placed before the `div.panel-body`.
```html
*
* John Doe commented on that:
*
Today, I ate an apple. It was tasty
```
---
### Panel's footer
.breadcrumbs[
Bootstrap >
Panel]
With certain use-case, you could want a special zone at the bottom of your panel to put, for example, action button or less important information.
To do that, add after the `div.panel-body` a new `
` with the `.panel-footer` class:
```html
John Doe commented on that:
Today, I ate an apple. It was tasty
*
```
---
### Panel's color
.breadcrumbs[
Bootstrap >
Panel]
One more time, Bootstrap allows you to add color to your component, using the same color schemes than usual.
Replace the `.panel-default` with one of the available classes to use these color schemes:
* `.panel-default`
* `.panel-primary`
* `.panel-success`
* `.panel-info`
* `.panel-warning`
* `.panel-danger`
```html
```
> Note that this will only change the color of **the title and the border**. The footer will stay grey-ish.
---
### Expand panel's body
.breadcrumbs[
Bootstrap >
Panel]
Adding a **table** or a **list group** inside a panel render it in a seamless fashion, perfectly intergrating this table or list group to the panel's design.
Simply add a `
` with the `.table` class **after** your `div.panel-body`:
```html
John Doe commented on that:
Today, I ate an apple. It was tasty
*
*
* First Name | Last Name |
*
*
* Mark | Otto |
* Jacob | Thornton |
* Larry | the Bird |
*
*
```
---
#### List group in body
.breadcrumbs[Bootstrap > Panel > Expand panel's body]
For a list group, its the same idea.
> Remove the table from the panel.
Add your new `