Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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
<!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>
Advertisements
