"social icon"
Bootstrap 3.2.0 Snippet by Sagar Joshi

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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 ---------->
<div class="container">
<div class="row">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"/>
<body>
<div class="test"><a href="#">
<p>Facebook</p></a><a href="#">
<p>Twitter</p></a><a href="#">
<p>Google+</p></a><a href="#">
<p>Github</p></a><a href="#">
<p>Dribble</p></a><a href="#">
<p>CodePen</p></a></div>
</body>
</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
body {
background-color: #cc4a14;
text-align: center;
}
.test {
margin-top: 125px;
}
.test a {
color: #fff;
background: #99583d;
border-radius: 4px;
text-align: center;
text-decoration: none;
font-family: fontawesome;
position: relative;
display: inline-block;
width: 40px;
height: 40px;
padding-top: 12px;
margin: 0 2px;
transition: all .5s;
}
.test a:hover {
background: #ff0000;
}
.test a:hover p {
bottom: 35px;
visibility: visible;
}
.test a p {
color: #666;
position: absolute;
bottom: 0;
left: -25px;
right: -25px;
padding: 5px 7px;
z-index: -1;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: