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:
|
<html>
<head>
<title>test_menue_css</title>
<style type="text/css">
#menuebox {
position: relative;
height: 30px;
}
#menue {
position:absolute;
top: 5px;
left: 0;
z-index: 200;
}
#menue .aussen {
float: left;
display: block;
overflow: hidden;
width: 8em;
height: 1.3em;
font-weight: bold;
text-align: center;
color: #00000;
}
a.innen
{
display: block;
width: 8px;
padding: 2px;
text-decoration: none;
font-weight: normal;
color: #00000;
}
a.innen:link, a.innen:visited {
color:#000000;
}
a.innen, a.innen:active {
color:#000000;
font-weight:bold;
}
a.aussen:link, a.aussen:visited {
color:#000000;
}
a.aussen, a.aussen:active {
color:#000000;
font-weight:bold;
text-decoration:none;
}
span.menutag {
display: block;
cursor: default;
}
</style>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
</body>
</html> |