Style Bootstrap card with bg-info class



Use the bg-info class with the card-class in Bootstrap 4 to add information in a card −

<div class="card bg-info text-white">

Now include the card-body class in it −

<div class="card bg-info text-white">
  <div class="card-body">
    Bring your Laptop for the BootCamp
  </div>
</div>

Let us see an example to learn how to implement Bootstrap 4 bg-info class with the card class −

Example

Live Demo

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
  </head>
<body>
  <div class="container">
    <h3>Information - Event</h3>
    <div class="card bg-info text-white">
      <div class="card-body">Bring your Laptop for the BootCamp</div>
    </div>
  </div>
</body>
</html>
Updated on: 2020-06-18T11:51:42+05:30

206 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements