Bootstrap 4 Card Examples


Example 1: card bootstrap 4

<div class="card" style="width:400px">     <img class="card-img-top" src="img_avatar1.png" alt="Card image" style="width:100%">     <div class="card-body">       <h4 class="card-title">John Doe</h4>       <p class="card-text">Some example text some example text. John Doe is an architect and engineer</p>       <a href="#" class="btn btn-primary">See Profile</a>     </div>   </div>

Example 2: boostrap card

<div class="card" style="width: 18rem;">   <div class="card-body">     <h5 class="card-title">Card title</h5>     <h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>     <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>     <a href="#" class="card-link">Card link</a>     <a href="#" class="card-link">Another link</a>   </div> </div>

Example 3: bootstrap card change image

.card-img-top {     width: 100%;     height: 15vw;     object-fit: cover; }

Example 4: .card class

<style>     .card {       border: 1px solid #ccc;       background-color: #f4f4f4;       padding: 20px;       margin-bottom: 10px;     }   </style>

Example 5: card bootstrap

<div class="card" style="width: 18rem;">   <img class="card-img-top" src="..." alt="Card image cap">   <div class="card-body">     <h5 class="card-title">Card title</h5>     <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>     <a href="#" class="btn btn-primary">Go somewhere</a>   </div> </div>

Example 6: responsive card header

<div class="card" style="width: 18rem;">   <div class="card-header">     Featured   </div>   <ul class="list-group list-group-flush">     <li class="list-group-item">Cras justo odio</li>     <li class="list-group-item">Dapibus ac facilisis in</li>     <li class="list-group-item">Vestibulum at eros</li>   </ul> </div>

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?