"feature box css effects"
Bootstrap 4.1.1 Snippet by dkstudio

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
<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 ---------->
<div class="col-md-4">
<div class="feature-box-wrap f-box-style-3 relative b-radius-5 pad-40">
<div class="feature-box-details">
<div class="feature-icon">
<span class="icon-briefcase"></span>
</div>
<div class="feature-content">
<div class="feature-title mb-3">
<h4 class="">Business Support</h4>
</div>
<p class="mb-0">Duis aute irure dolor in voluptate reprehenderit in velit esse.</p>
</div>
</div>
</div>
</div>
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-box-wrap.f-box-style-3 {
border: solid 1px #e6e6e6;
-webkit-box-shadow: 0 10px 50px -12px rgba(171,171,171,.9);
-moz-box-shadow: 0 10px 50px -12px rgba(171,171,171,.9);
-ms-box-shadow: 0 10px 50px -12px rgba(171,171,171,.9);
-o-box-shadow: 0 10px 50px -12px rgba(171,171,171,.9);
box-shadow: 0 10px 50px -12px rgba(171,171,171,.9);
background: #fff;
margin-bottom: 30px;
}
.f-box-style-3:hover:after {
transform-origin: left;
transform: scaleX(1);
}
.f-box-style-3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
height: 6px;
width: 100%;
transform-origin: right;
transition: transform 500ms ease-in-out;
-webkit-transition: transform 500ms ease-in-out;
-moz-transition: transform 500ms ease-in-out;
-o-transition: transform 500ms ease-in-out;
transform: scaleX(0);
border-bottom-left-radius: 30px;
-webkit-bottom-left-radius: 30px;
-moz-bottom-left-radius: 30px;
border-bottom-right-radius: 30px;
-webkit-bottom-right-radius: 30px;
-moz-bottom-right-radius: 30px;
}
.f-box-style-3::after {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: