"Image Border on Hover"
Bootstrap 4.1.1 Snippet by sarwal

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 ---------->
<div class="container-fluid">
<div class="row bg-secondary p-0">
<div class="col-12 text-center mx-auto p-5">
<div class="demo-title">
Bordered Image Content on Hover
</div>
<div class="credit-title">
Designed by <a href="https://bootsnipp.com/sarwal" target="_blank" class="text-light">sarwal</a>.
Inspired by <a href="https://bootsnipp.com/prakash27dec" target="_blank" class="text-light">prakash27dec</a>.
</div>
</div>
</div>
<div class="row bg-dark p-1">
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 col-12 mx-auto p-1">
<div class="hover-box">
<img src="https://cdn.pixabay.com/photo/2017/06/17/12/59/luxury-home-2412145_960_720.jpg">
<div class="hover-box-content">
<div class="hover-box-title">
Lorem Ipsum
</div>
<div class="hover-box-desc">
Lorem ipsum dolor sit amet.
</div>
</div>
</div>
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 col-12 mx-auto p-1">
<div class="hover-box">
<img src="https://cdn.pixabay.com/photo/2016/08/16/03/50/exterior-1597098_960_720.jpg">
<div class="hover-box-content">
<div class="hover-box-title">
Lorem Ipsum
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
/* Importing the Font Families used in this Demo */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:500&display=swap');
/* Removable Title at Top of Demo */
.demo-title {
font-family: 'Playfair Display', serif;
font-weight: normal;
font-size: 45px;
color: #FFFFFF;
}
/* Removable Description at Bottom of Demo */
.credit-title {
font-family: 'Montserrat', sans-serif;
font-weight: normal;
font-size: 0.9rem;
color: #FFFFFF;
}
/* Initial Hover Box Setup */
.hover-box {
position: relative;
overflow: hidden;
text-align: center;
}
/* Initial Setup of the Top and Bottom Borders on Hover */
.hover-box:before {
border-top: 1px solid #FFFFFF;
border-bottom: 1px solid #FFFFFF;
content: '';
z-index: 2;
position: absolute;
top: 10px;
left: 10px;
right: 10px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: