"eCommerce Product Detail , bootstrap 4 product view card"
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="card">
<div class="row">
<aside class="col-sm-5 border-right">
<article class="gallery-wrap">
<div class="img-big-wrap">
<div> <a href="#"><img src="https://s9.postimg.org/tupxkvfj3/image.jpg"></a></div>
</div> <!-- slider-product.// -->
<div class="img-small-wrap">
<div class="item-gallery"> <img src="https://s9.postimg.org/tupxkvfj3/image.jpg"> </div>
<div class="item-gallery"> <img src="https://s9.postimg.org/tupxkvfj3/image.jpg"> </div>
<div class="item-gallery"> <img src="https://s9.postimg.org/tupxkvfj3/image.jpg"> </div>
<div class="item-gallery"> <img src="https://s9.postimg.org/tupxkvfj3/image.jpg"> </div>
</div> <!-- slider-nav.// -->
</article> <!-- gallery-wrap .end// -->
</aside>
<aside class="col-sm-7">
<article class="card-body p-5">
<h3 class="title mb-3">Original Version of Some product name</h3>
<p class="price-detail-wrap">
<span class="price h3 text-warning">
<span class="currency">US $</span><span class="num">1299</span>
</span>
<span>/per kg</span>
</p> <!-- price-detail-wrap .// -->
<dl class="item-property">
<dt>Description</dt>
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
.gallery-wrap .img-big-wrap img {
height: 450px;
width: auto;
display: inline-block;
cursor: zoom-in;
}
.gallery-wrap .img-small-wrap .item-gallery {
width: 60px;
height: 60px;
border: 1px solid #ddd;
margin: 7px 2px;
display: inline-block;
overflow: hidden;
}
.gallery-wrap .img-small-wrap {
text-align: center;
}
.gallery-wrap .img-small-wrap img {
max-width: 100%;
max-height: 100%;
object-fit: cover;
border-radius: 4px;
cursor: zoom-in;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: