Cards

Bootstrap's cards provide a flexible and extensible content container with multiple variants and options.

About

A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options. If you’re familiar with Bootstrap 3, cards replace our old panels, wells, and thumbnails. Similar functionality to those components is available as modifier classes for cards.

Example

Cards are built with as little markup and styles as possible, but still manage to deliver a ton of control and customization. Built with flexbox, they offer easy alignment and mix well with other Bootstrap components.

Below is an example of a basic card with mixed content and a fixed width. Cards have no fixed width to start, so they’ll naturally fill the full width of its parent element.

Card image cap

Card title

Some quick example text to build on the card title and make up the bulk of the card's content.

Go somewhere
<div class="card" style="width: 20rem;">
  <img class="card-img-top" src="..." alt="Card image cap">
  <div class="card-body">
    <h4 class="card-title">Card title</h4>
    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
    <a href="#" class="btn btn-primary">Go somewhere</a>
  </div>
</div>

Content types

Cards support a wide variety of content, including images, text, list groups, links, and more. Below are examples of what’s supported.

Body

The building block of a card is the .card-body. Use it whenever you need a padded section within a card.

This is some text within a card body.
<div class="card">
  <div class="card-body">
    This is some text within a card body.
  </div>
</div>

Card titles are used by adding .card-title to a <h*> tag. In the same way, links are added and placed next to each other by adding .card-link to an <a> tag.

Subtitles are used by adding a .card-subtitle to a <h*> tag. If the .card-title and the .card-subtitle items are placed in a .card-body item, the card title and subtitle are aligned nicely.

Card title

Card subtitle

Some quick example text to build on the card title and make up the bulk of the card's content.

Card link Another link
<div class="card" style="width: 20rem;">
  <div class="card-body">
    <h4 class="card-title">Card title</h4>
    <h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
    <a href="#" class="card-link">Card link</a>
    <a href="#" class="card-link">Another link</a>
  </div>
</div>

Images

.card-img-top places an image to the top of the card. With .card-text, text can be added to the card. Text within .card-text can also be styled with the standard HTML tags.

Card image cap

Some quick example text to build on the card title and make up the bulk of the card's content.

<div class="card" style="width: 20rem;">
  <img class="card-img-top" src="..." alt="Card image cap">
  <div class="card-body">
    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
  </div>
</div>

List groups

Create lists of content in a card with a flush list group.

  • Cras justo odio
  • Dapibus ac facilisis in
  • Vestibulum at eros
<div class="card" style="width: 20rem;">
  <ul class="list-group list-group-flush">
    <li class="list-group-item">Cras justo odio</li>
    <li class="list-group-item">Dapibus ac facilisis in</li>
    <li class="list-group-item">Vestibulum at eros</li>
  </ul>
</div>
Featured
  • Cras justo odio
  • Dapibus ac facilisis in
  • Vestibulum at eros
<div class="card" style="width: 20rem;">
  <div class="card-body">
    Featured  
  </div>
  <ul class="list-group list-group-flush">
    <li class="list-group-item">Cras justo odio</li>
    <li class="list-group-item">Dapibus ac facilisis in</li>
    <li class="list-group-item">Vestibulum at eros</li>
  </ul>
</div>

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Someone famous in Source Title
<div class="card">
  <div class="card-body">
    <blockquote class="blockquote blockquote-primary mb-0">
      <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
      <footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
    </blockquote>
  </div>
</div>
Featured

Special title treatment

With supporting text below as a natural lead-in to additional content.

Go somewhere
<div class="card text-center">
  <div class="card-header mt-2">
    Featured
  </div>
  <div class="card-body">
    <h4 class="card-title">Special title treatment</h4>
    <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
    <a href="#" class="btn btn-primary">Go somewhere</a>
  </div>
  <div class="card-footer text-muted mb-2">
    2 days ago
  </div>
</div>

Text alignment

You can quickly change the text alignment of any card—in its entirety.

Special title treatment

With supporting text below as a natural lead-in to additional content.

Go somewhere

Special title treatment

With supporting text below as a natural lead-in to additional content.

Go somewhere

Special title treatment

With supporting text below as a natural lead-in to additional content.

Go somewhere
<div class="card" style="width: 20rem;">
  <div class="card-body">
    <h4 class="card-title">Special title treatment</h4>
    <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
    <a href="#" class="btn btn-primary">Go somewhere</a>
  </div>
</div>

<div class="card text-center" style="width: 20rem;">
  <div class="card-body">
    <h4 class="card-title">Special title treatment</h4>
    <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
    <a href="#" class="btn btn-primary">Go somewhere</a>
  </div>
</div>

<div class="card text-right" style="width: 20rem;">
  <div class="card-body">
    <h4 class="card-title">Special title treatment</h4>
    <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
    <a href="#" class="btn btn-primary">Go somewhere</a>
  </div>
</div>

Add some navigation to a card’s header (or block) with Bootstrap’s nav components.

Special title treatment

With supporting text below as a natural lead-in to additional content.

Go somewhere
<div class="card text-center">
  <div class="card-header">
    <ul class="nav nav-tabs justify-content-center">
      <li class="nav-item">
        <a class="nav-link active" href="#">Active</a>
      </li>
      <li class="nav-item">
        <a class="nav-link" href="#">Link</a>
      </li>
      <li class="nav-item">
        <a class="nav-link disabled" href="#">Disabled</a>
      </li>
    </ul>
  </div>
  <div class="card-body">
    <h4 class="card-title">Special title treatment</h4>
    <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
    <a href="#" class="btn btn-primary">Go somewhere</a>
  </div>
</div>

Special title treatment

With supporting text below as a natural lead-in to additional content.

Go somewhere
<div class="card text-center">
  <div class="card-header">
    <ul class="nav nav-pills nav-pills-primary justify-content-center mt-4">
      <li class="nav-item">
        <a class="nav-link active" href="#">Active</a>
      </li>
      <li class="nav-item">
        <a class="nav-link" href="#">Link</a>
      </li>
      <li class="nav-item">
        <a class="nav-link disabled" href="#">Disabled</a>
      </li>
    </ul>
  </div>
  <div class="card-body">
    <h4 class="card-title">Special title treatment</h4>
    <p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
    <a href="#" class="btn btn-primary">Go somewhere</a>
  </div>
</div>

Images

Cards include a few options for working with images. Choose from appending “image caps” at either end of a card, overlaying images with card content, or simply embedding the image in a card.

Image caps

Similar to headers and footers, cards can include top and bottom “image caps”—images at the top or bottom of a card.

Card image cap

Card title

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

Last updated 3 mins ago

Card title

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

Last updated 3 mins ago

Card image cap
<div class="card mb-3">
  <img class="card-img-top" src="..." alt="Card image cap">
  <div class="card-body">
    <h4 class="card-title">Card title</h4>
    <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
    <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
  </div>
</div>
<div class="card">
  <div class="card-body">
    <h4 class="card-title">Card title</h4>
    <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
    <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
  </div>
  <img class="card-img-bottom" src="..." alt="Card image cap">
</div>

Image overlays

Turn an image into a card background and overlay your card’s text. Depending on the image, you may or may not need additional styles or utilities.

Card image

Card title

This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.

Last updated 3 mins ago

<div class="card bg-dark text-white">
  <img class="card-img" src="..." alt="Card image">
  <div class="card-img-overlay">
    <h4 class="card-title">Card title</h4>
    <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
    <p class="card-text">Last updated 3 mins ago</p>
  </div>
</div>

Examples

Blog Cards

Focus
Stay Focused: Train Your Brain

Our brains are finely attuned to distraction, so today's digital environment makes it especially hard to focus...

<div class="card card-blog">
  <div class="card-image">
    <img class="img rounded" src="../../../assets/img/project13.jpg">
  </div>
  <div class="card-body">
    <h6 class="category text-warning">
      <i class="now-ui-icons business_bulb-63"></i>
      Focus
    </h6>
    <h5 class="card-title">
      <a href="#nuk">Stay Focused: Train Your Brain</a>
    </h5>
    <p class="card-description">
    Our brains are finely attuned to distraction, so today's digital environment makes it especially hard to focus...
    </p>
  </div>
</div>
Trending

"The supreme art of war is to subdue the enemy without fighting."

<div class="card" data-background-color="red">
  <div class="card-body">
    <h6 class="category-social">
      <i class="fa fa-fire"></i> Trending
    </h6>
    <p class="card-description">
    "The supreme art of war is to subdue the enemy without fighting."
    </p>
    <div class="card-footer">
      <div class="author">
        <img src="../../../assets/img/julie.jpg" alt="..." class="avatar img-raised">
        <span>Susan B. Anthony</span>
      </div>
      <div class="stats stats-right">
        <i class="now-ui-icons ui-2_favourite-28"></i> 10.4K ·
        <i class="now-ui-icons files_single-copy-04"></i> 425
      </div>
    </div>
  </div>
</div>
Trending
Here Be Dragons

An immersive production studio focused on virtual reality content, has closed a $10 million Series A round led by Discovery Communications

<div class="card">
  <div class="card-body">
    <h6 class="category text-danger">
      <i class="now-ui-icons media-2_sound-wave"></i> Trending
    </h6>
    <h5 class="card-title">
      <a href="#pablo">Here Be Dragons</a>
      </h5>
      <p class="card-description">
        An immersive production studio focused on virtual reality content, has closed a $10 million Series A round led by Discovery Communications
      </p>
    <div class="card-footer">
      <div class="author">
        <img src="../../../assets/img/olivia.jpg" alt="..." class="avatar img-raised">
        <span>Lord Alex</span>
      </div>
      <div class="stats stats-right">
        <i class="now-ui-icons ui-2_favourite-28"></i> 342 ·
        <i class="now-ui-icons files_single-copy-04"></i> 45
      </div>
    </div>
  </div>
</div>

Profile Card

CEO / Co-Founder

James Thompson

Don't be scared of the truth because we need to restart the human foundation in truth.

Follow
<div class="card card-profile" data-background-color="black">
  <div class="card-avatar">
    <a href="#pablo">
      <img class="img img-raised" src="../../../assets/img/james.jpg">
    </a>
  </div>

  <div class="card-body">
    <h6 class="card-category">CEO / Co-Founder</h6>

    <h4 class="card-title">James Thompson</h4>

    <p class="card-description">
    Don't be scared of the truth because we need to restart the human foundation in truth.
    </p>
    <a href="#pablo" class="btn btn-primary btn-round">Follow</a>
  </div>
</div>

Full Background Card

How wild Animals live in the National Forest

<div class="card card-background" style="background-image: url('../../../assets/img/bg1.jpg')">

  <div class="card-body">
    <div class="card-title text-left">
      <h3>How wild Animals live in the National Forest</h3>
    </div>

  <div class="card-footer text-left">
    <div class="stats">
      <span>
        <i class="now-ui-icons media-2_sound-wave"></i>SPACE.com
      </span>

      <span>
        <i class="now-ui-icons tech_watch-time"></i> 20min ago
      </span>
      </div>

      <div class="stats-link pull-right">
        <a href="#pablo" class="footer-link">Environment</a>
      </div>
    </div>
  </div>
</div>

Pricing Card

Alpha Pack

$67

This is good if your company size is between 100 and 299 employees.

Add to Cart
<div class="card card-pricing">
  <div class="card-body">
    <h6 class="category">Alpha Pack</h6>
    <div class="icon icon-primary">
        <i class="now-ui-icons objects_diamond"></i>
    </div>
    <h3 class="card-title">$67</h3>
    <p class="card-description">
      This is good if your company size is between 100 and 299 employees.
    </p>
    <a href="#pablo" class="btn btn-primary btn-round">Add to Cart</a>
  </div>
</div>

Plain Card

Features
That’s One Way To Ditch Your Passenger

As near as we can tell, this guy must have thought he was going over backwards and tapped the rear break to bring the nose down...

<div class="card card-blog card-plain">
  <div class="card-image">
    <a href="#pablo">
      <img class="img rounded img-raised" src="../../../assets/img/card-blog2.jpg">
    </a>
  </div>

  <div class="card-body">
    <h6 class="category text-primary">Features</h6>
    <h5 class="card-title">
      <a href="#nuk">That’s One Way To Ditch Your Passenger</a>
    </h5>
    <p class="card-description">
      As near as we can tell, this guy must have thought he was going over backwards and tapped the rear break to bring the nose down...
    </p>
    <div class="card-footer">
      <div class="author">
        <img src="../../../assets/img/julie.jpg" alt="..." class="avatar img-raised">
        <span>Mike John</span>
      </div>
      <div class="stats stats-right">
        <i class="now-ui-icons tech_watch-time"></i> 5 min read
      </div>
    </div>
  </div>
</div>