Turn an image into a Bootstrap 4 card background


Use the card-img-overlay class to turn an image into a card background.

You need to first set the <img> element and then use the card-img-overlay class as in the following code snippet −

<div class="card img-fluid" style="width:500px">
  <img class="card-img-top" src="https://www.tutorialspoint.com/avro/images/apache-avro-mini-logo.jpg" alt="Card image" style="width:100%">
  <div class="card-img-overlay">
    <h4 class="card-title">Avro</h4>
    <p class="card-text">Tutorial for Apache Avro</p>
    <a href="#" class="btn btn-info">Learn</a>
  </div>
</div>

Let us see an example to learn how to turn an image into a Bootstrap card background −

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">
  <h2>Apach - Tool for Hadoop</h2>
  <div class="card img-fluid" style="width:500px">
    <img class="card-img-top" src="https://www.tutorialspoint.com/avro/images/apache-avro-mini-logo.jpg" alt="Card image" style="width:100%">
    <div class="card-img-overlay">
      <h4 class="card-title">Avro</h4>
      <p class="card-text">Tutorial for Apache Avro</p>
      <a href="#" class="btn btn-info">Learn</a>
    </div>
  </div>
</div>

</body>
</html>

Updated on: 17-Jun-2020

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements