ShapeYourPath
(current)
Run Code
Live Code Editor- Placing Image As A Background Of The Card
Source Code
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"> <title>Placing Image As A Background Of The Card</title> </head> <body> <h1 class="text-center">Placing image as a background of the card</h1> <p class="text-justify text-center">Let us understand bootstrap card having image in the background of the card.</p> <div class="container"> <div class="row"> <div class="col-12 col-sm-8 offset-sm-2"> <div class="card" style="width:400px"> <img class="card-img-top img-fluid" src="https://picsum.photos/seed/picsum/200/150" alt="Card image"> <div class="card-img-overlay"> <h4 class="card-title">Card Title</h4> <p class="card-text">Write card text information.</p> <a href="#" class="btn btn-primary">Card link</a> </div> </div> </div><!--/offset-sm-2--> </div><!--/row--> </div><!--/container--> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script> </body> </html>
Output :
Running