"Feature"
Bootstrap 4.1.1 Snippet by Nemra1

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.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/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 ---------->
<section id="feature" class="sec-padding sec-dark">
<div class="container">
<div class="row row-no-padding">
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="feature-title">
<h3>Feature</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it.</p>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="feature-block">
<div class="feature-block-item">
<i class="fa fa-sun-o" aria-hidden="true"></i>
<h5>Innovative Idea</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</div>
<div class="feature-block-overlay"></div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="feature-block">
<div class="feature-block-item">
<i class="fa fa-check-square-o" aria-hidden="true"></i>
<h5>Clean and Valid code</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</div>
<div class="feature-block-overlay"></div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="feature-block">
<div class="feature-block-item">
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
/* Feature Section */
.feature-title {
padding-right: 30px;
}
.feature-title h3 {
text-transform: uppercase;
font-size: 25px;
}
.feature-title h3:after {
content: '';
display: block;
width: 90px;
border-top: 1px solid #ff5f83;
margin: 15px 0;
}
.feature-block {
position: relative;
border: 1px solid #ddd;
height: 216px;
text-align: center;
}
.feature-block .feature-block-overlay {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0px;
left: 0;
opacity: 0;
background-color: #3fb4e5;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.10) 0px 15px 45px 0px;
z-index: 1;
}
.feature-block:hover .feature-block-overlay {
opacity: 1;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: