"product cards, ecommerce product boxes, bootstrap 4 "
Bootstrap 4.0.0 Snippet by vosidiy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<br> <p class="text-center">More bootstrap 4 components on <a href="http://bootstrap-ecommerce.com/"> Bootstrap-ecommerce.com</a></p>
<hr>
<div class="row">
<div class="col-md-3">
<figure class="card card-product">
<div class="img-wrap">
<img src="https://s9.postimg.org/tupxkvfj3/image.jpg">
<a class="btn-overlay" href="#"><i class="fa fa-search-plus"></i> Quick view</a>
</div>
<figcaption class="info-wrap">
<h6 class="title text-dots"><a href="#">Good item name</a></h6>
<div class="action-wrap">
<a href="#" class="btn btn-primary btn-sm float-right"> Order </a>
<div class="price-wrap h5">
<span class="price-new">$1280</span>
<del class="price-old">$1980</del>
</div> <!-- price-wrap.// -->
</div> <!-- action-wrap -->
</figcaption>
</figure> <!-- card // -->
</div> <!-- col // -->
<div class="col-md-3">
<figure class="card card-product">
<div class="img-wrap"> <img src="https://s9.postimg.org/4ooze1tof/image.jpg"
<a class="btn-overlay" href="#"><i class="fa fa-search-plus"></i> Quick view</a>
</div>
<figcaption class="info-wrap">
<h6 class="title text-dots"><a href="#">The name of product</a></h6>
<div class="action-wrap">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.card-product:after {
content: "";
display: table;
clear: both;
visibility: hidden; }
.card-product .price-new, .card-product .price {
margin-right: 5px; }
.card-product .price-old {
color: #999; }
.card-product .img-wrap {
border-radius: 3px 3px 0 0;
overflow: hidden;
position: relative;
height: 220px;
text-align: center; }
.card-product .img-wrap img {
max-height: 100%;
max-width: 100%;
object-fit: cover; }
.card-product .info-wrap {
overflow: hidden;
padding: 15px;
border-top: 1px solid #eee; }
.card-product .action-wrap {
padding-top: 4px;
margin-top: 4px; }
.card-product .bottom-wrap {
padding: 15px;
border-top: 1px solid #eee; }
.card-product .title {
margin-top: 0; }
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: