-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCentered Menu.html
95 lines (76 loc) · 2.11 KB
/
Centered Menu.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- saved from url=(0061)https://24ways.org/examples/centered-tabs-with-css/tabs.html# -->
<html xmlns="http://www.w3.org/1999/xhtml"><script type="text/javascript">window["_gaUserPrefs"] = { ioo : function() { return true; } }</script><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Centered Menu</title>
<style type="text/css">
<!--
body {
background: #FFF;
color: #000;
font: 62.5% "Lucida Grande", Verdana, Geneva, Helvetica, sans-serif;
margin: 0;
padding: 0;
}
#navigation {
background: #AFD5E0 url("bg-nav.gif") repeat-x;
border: 1px solid #979797;
border-width: 1px 0;
font-size: 1.1em;
margin-top: 1em;
padding-top: .6em;
}
#navigation ul, #navigation ul li {
list-style: none;
margin: 0;
padding: 0;
}
#navigation ul {
padding: 5px 0;
text-align: center;
}
#navigation ul li {
display: inline;
margin-right: .75em;
}
#navigation ul li.last {
margin-right: 0;
}
#navigation ul li a {
background: url("tab-right.gif") no-repeat 100% 0;
color: #06C;
padding: 5px 0;
text-decoration: none;
}
#navigation ul li a span {
background: url("tab-left.gif") no-repeat;
padding: 5px 1em;
}
#navigation ul li a:hover span {
color: #69C;
text-decoration: underline;
}
/*\*//*/
#navigation ul li a {
display: inline-block;
white-space: nowrap;
width: 1px;
}
#navigation ul {
padding-bottom: 0;
margin-bottom: -1px;
}
/**/
// -->
</style>
</head>
<body>
<div id="navigation">
<ul>
<li><a href="https://24ways.org/examples/centered-tabs-with-css/tabs.html#"><span>Home</span></a></li>
<li><a href="https://24ways.org/examples/centered-tabs-with-css/tabs.html#"><span>About</span></a></li>
<li><a href="https://24ways.org/examples/centered-tabs-with-css/tabs.html#"><span>Our Work</span></a></li>
<li><a href="https://24ways.org/examples/centered-tabs-with-css/tabs.html#"><span>Products</span></a></li>
<li class="last"><a href="https://24ways.org/examples/centered-tabs-with-css/tabs.html#"><span>Contact Us</span></a></li>
</ul>
</div>
</body></html>