- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap 4 .card-img-overlay class
Use the card-img-overlay class to turn an image into a Bootstrap 4 card background and set the image using the <img> element and the card-img-top class −
<img class="card-img-top" src="Image-Source" alt="Alt-Text" style="width:100%">
After that, use the card-img-overlay class −
<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>
You can try to run the following code to implement the card-img-overlay class in Bootstrap 4 −
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="Avro" 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