"Responsive Price table"
Bootstrap 3.3.0 Snippet by dexo

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/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<section>
<div class="col-centered col-lg-12">
<div class="pricing-tables attached ">
<div class="row ">
<div class="col-sm-3 col-md-3 col-lg-3">
<div class="plan first">
<div class="head">
<h2>Starter</h2>
</div>
<ul class="item-list">
<li>
<strong> Buliding </strong>One time scraping</li>
<li>
<strong>$xxx4xxx</strong></li>
<li>
<strong>NIL</strong> </li>
<li>
<strong>Third party services</strong> As per use, will be added to bill</li>
</ul>
<div class="price mediafix">
<h3>
<span class="symbol">$</span>19</h3>
<h4>per month</h4>
</div>
<a class="btn-clean btn-pad" href="index.html#contact">Order Now <i class="ion-ios-unlocked-outline"></i></a>
</div>
</div>
<div class="col-sm-3 col-md-2 col-lg-2">
<div class="plan first recommended">
<div class="head">
<h2>Pro</h2>
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
/* pricing table */
.pricing-tables {
padding: 20px;
}
.pricing-tables h1 {
font-size: 48px;
}
.pricing-tables .plan.first {
border-bottom-left-radius: 4px;
border-top-left-radius: 4px !important;
}
.pricing-tables .plan.last {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
.pricing-tables .plan.recommended {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.pricing-tables .plan.recommended .head {
/*margin-bottom: 20px;*/
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.pricing-tables.attached .col-sm-4, .pricing-tables.attached .col-md-4, .pricing-tables.attached .col-sm-3, .pricing-tables.attached .col-md-3 {
padding-left: 0;
padding-right: 0;
}
.pricing-tables.attached .plan {
border-radius: 0;
}
.pricing-tables.attached .plan .head {
border-radius: 0;
}
/*.pricing-tables.attached .plan.recommended {
border-radius: 4px;
}*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: