bootstrap card

Solutions on MaxInterview for bootstrap card by the best coders in the world

showing results for - "bootstrap card"
Federica
07 Jul 2019
1  <div class="card" style="width:400px">
2    <img class="card-img-top" src="img_avatar1.png" alt="Card image" style="width:100%">
3    <div class="card-body">
4      <h4 class="card-title">John Doe</h4>
5      <p class="card-text">Some example text some example text. John Doe is an architect and engineer</p>
6      <a href="#" class="btn btn-primary">See Profile</a>
7    </div>
8  </div>
Alessandro
01 Apr 2016
1.card-img-top {
2    width: 100%;
3    height: 15vw;
4    object-fit: cover;
5}
Jan
22 Feb 2018
1<style>
2    .card {
3      border: 1px solid #ccc;
4      background-color: #f4f4f4;
5      padding: 20px;
6      margin-bottom: 10px;
7    }
8  </style>
Sara
23 Mar 2017
1<div class="card" style="width: 18rem;">
2  <img class="card-img-top" src="..." alt="Card image cap">
3  <div class="card-body">
4    <h5 class="card-title">Card title</h5>
5    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
6    <a href="#" class="btn btn-primary">Go somewhere</a>
7  </div>
8</div>
Zoltan
14 Jan 2018
1<div class="card" style="width: 18rem;">
2  <img src="..." class="card-img-top" alt="...">
3  <div class="card-body">
4    <h5 class="card-title">Card title</h5>
5    <p class="card-text">Some quick example text to build on the card
6      title and make up the bulk of the card's content.</p>
7    <a href="#" class="btn btn-primary">Go somewhere</a>
8  </div>
9</div>
London
25 Feb 2020
1<div class="card" style="width: 18rem;">
2  <img src="..." class="card-img-top" alt="...">
3  <div class="card-body">
4    <h5 class="card-title">Card title</h5>
5    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
6    <a href="#" class="btn btn-primary">Go somewhere</a>
7  </div>
8</div>
similar questions
queries leading to this page
bootstrap card