bootstrap card change image
.card-img-top {
width: 100%;
height: 15vw;
object-fit: cover;
}
bootstrap card change image
.card-img-top {
width: 100%;
height: 15vw;
object-fit: cover;
}
bootstrap + cards
<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>
bootsrap card
<div class="card" style="width: 18rem;">
<img src="..." class="card-img-top" alt="...">
<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>
bootstrap card
<div class="card" style="width: 18rem;">
<img src="..." class="card-img-top" alt="...">
<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>
Contoh Card Bootstrap 4
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contoh Card Bootstrap 4 - Kodingplus</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.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<style>
/* Helper Styles */
body {
font-family: Varela Round;
background: #f1f1f1;
}
a {
text-decoration: none;
}
/* Card Styles */
.card-sl {
border-radius: 8px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.card-image img {
max-height: 100%;
max-width: 100%;
border-radius: 8px 8px 0px 0;
}
.card-action {
position: relative;
float: right;
margin-top: -25px;
margin-right: 20px;
z-index: 2;
color: #E26D5C;
background: #fff;
border-radius: 100%;
padding: 15px;
font-size: 15px;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.19);
}
.card-action:hover {
color: #fff;
background: #E26D5C;
-webkit-animation: pulse 1.5s infinite;
}
.card-heading {
font-size: 18px;
font-weight: bold;
background: #fff;
padding: 10px 15px;
}
.card-text {
padding: 10px 15px;
background: #fff;
font-size: 14px;
color: #636262;
}
.card-button {
display: flex;
justify-content: center;
padding: 10px 0;
width: 100%;
background-color: #1F487E;
color: #fff;
border-radius: 0 0 8px 8px;
}
.card-button:hover {
text-decoration: none;
background-color: #1D3461;
color: #fff;
}
@-webkit-keyframes pulse {
0% {
-moz-transform: scale(0.9);
-ms-transform: scale(0.9);
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
70% {
-moz-transform: scale(1);
-ms-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
}
100% {
-moz-transform: scale(0.9);
-ms-transform: scale(0.9);
-webkit-transform: scale(0.9);
transform: scale(0.9);
box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
}
}
</style>
</head>
<body>
<div class="container" style="margin-top:50px;">
<div class="row">
<div class="col-md-3">
<div class="card-sl">
<div class="card-image">
<img
src="https://images.pexels.com/photos/1149831/pexels-photo-1149831.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" />
</div>
<a class="card-action" href="#"><i class="fa fa-heart"></i></a>
<div class="card-heading">
Audi Q8
</div>
<div class="card-text">
Audi Q8 is a full-size luxury crossover SUV coupé made by Audi that was launched in 2018.
</div>
<div class="card-text">
$67,400
</div>
<a href="#" class="card-button"> Purchase</a>
</div>
</div>
</div>
</body>
</html>
cards bootstrap examples
<div class="card" style="width: 18rem;">
</div>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us