-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter-position.html
71 lines (65 loc) · 1.97 KB
/
footer-position.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html>
<head>
<style>
footer {
background-image: url(fundo-rodape.png);
width: 100%;
padding: .5em 0;
}
.container {
width: 940px;
margin: 0 auto;
position: relative;
}
footer h1 {
height: 52px;
width: 142px;
text-indent: -9999px;
background-image: url(logo-rodape.png);
background-repeat: no-repeat;
}
.social {
padding: 0;
margin: 0;
position: absolute;
top: 11px;
right: 0;
}
.social li {
display: inline-block;
list-style: none;
}
.social li a {
height: 32px;
width: 32px;
display: block;
text-indent: -9999px;
}
.social li a[href*="facebook.com"] {
background-image: url(facebook.png);
}
.social li a[href*="twitter.com"] {
background-image: url(twitter.png);
}
.social li a[href*="plus.google.com"] {
background-image: url(googleplus.png);
}
</style>
<title>Position demo</title>
<meta charset="utf-8">
</head>
<body>
<footer>
<div class="container">
<h1>Mirror Fashion</h1>
<ul class="social">
<li><a href="http://facebook.com/mirrorfashion">Facebook</a></li>
<li><a href="http://twitter.com/mirrorfashion">Twitter</a></li>
<li><a href="http://plus.google.com/mirrorfashion">Google+</a></li>
</ul>
</div>
</footer>
<script src="prefixfree.min.js"></script>
</body>
</html>