"Hover Button Style"
Bootstrap 4.1.1 Snippet by webcoderskull

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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">
<section class="footer__col footer__col--next">
<div class="row">
<div class="col-lg-12 h-100 d-flex align-item-center justify-content-center">
<a href="/about" class="footer__btn" data-footer-link="2">
<span>Next: About</span>
<div class="footer__btn-line">
<div class="footer__btn-line-inner"></div>
</div>
</a>
</div>
</div>
</section>
</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
body{
background-color:#000;
height:100vh;
}
.footer__col--next {
clear: right;
margin-top: -5px;
margin-right: 0;
min-width: auto;
}
.footer__btn {
color: #343945;
float: left;
font-size: 15px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: antialiased;
line-height: 35px;
margin-top: 20px;
position: relative;
text-align: center;
}
.footer__btn>span {
color: #fff;
cursor: pointer;
pointer-events: none;
position: relative;
transition: color .6s ease;
z-index: 5;
}
.footer__btn-line {
bottom: -5px;
cursor: pointer;
height: 1px;
left: 0;
pointer-events: none;
position: absolute;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: