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: |
#menu {
z-index: 1; /* verhindert, daß die Ebene in älteren Browsern verdeckt wird*/
width:196px;
position:absolute;
left: 88px;
/* left: 51px */
top: 286px;
}
#menus {
padding:0px; margin:0px;
}
#menus li {
width:167px; height:22px;
background-image:url(../images/menuBody.gif);
background-position:top;
background-repeat:repeat-y;
padding:0px; margin:0px;
padding-top:16px;
list-style:none;
}
<DIV id="menu">
<DIV id="menuHeader"> </DIV>
<ul id="menus">
<li> </li>
</ul>
<DIV id="menuFooter"></DIV>
</DIV><!--END Menu -->
|