"shopping cart bootstrap4 css, ecommerce products listing table "
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 ---------->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/all.css">
<div class="container">
<br> <p class="text-center">More bootstrap 4 components on <a href="http://bootstrap-ecommerce.com/" target="_blank"> Bootstrap-ecommerce.com</a></p>
<hr>
<div class="card">
<table class="table table-hover shopping-cart-wrap">
<thead class="text-muted">
<tr>
<th scope="col">Product</th>
<th scope="col" width="120">Quantity</th>
<th scope="col" width="120">Price</th>
<th scope="col" width="200" class="text-right">Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<figure class="media">
<div class="img-wrap"><img src="http://bootstrap-ecommerce.com/main/images/items/2.jpg" class="img-thumbnail img-sm"></div>
<figcaption class="media-body">
<h6 class="title text-truncate">Product name goes here </h6>
<dl class="param param-inline small">
<dt>Size: </dt>
<dd>XXL</dd>
</dl>
<dl class="param param-inline small">
<dt>Color: </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
28
29
30
31
32
33
34
35
36
37
.param {
margin-bottom: 7px;
line-height: 1.4;
}
.param-inline dt {
display: inline-block;
}
.param dt {
margin: 0;
margin-right: 7px;
font-weight: 600;
}
.param-inline dd {
vertical-align: baseline;
display: inline-block;
}
.param dd {
margin: 0;
vertical-align: baseline;
}
.shopping-cart-wrap .price {
color: #007bff;
font-size: 18px;
font-weight: bold;
margin-right: 5px;
display: block;
}
var {
font-style: normal;
}
.media img {
margin-right: 1rem;
}
.img-sm {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: