Backgroundcolor wird in Firefox und IE nicht angezeigt

  • Hallo Zusammen

    Die Backgroundfarbe meiner Navi wird in IE und Firefox nicht angezeigt. Kann mir jemand helfen?

    http://www.eitner.ch/test/NAV

    Hier der dazugehörende css code:
    .navbar {
    width: 960px;
    line-height: 30px;
    background-color: silver;
    z-index:100;
    display: block;
    clear: both;
    }

    .navbar ul {
    font-family: Arial, Verdana;
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index:100;
    }

    .navbar ul li {
    display: block;
    position: relative;
    float: left;
    width: 120px;
    font-weight: bolder;
    z-index:100;
    }

    .navbar li ul {
    display: none;
    line-height: 20px;
    z-index:100;
    }

    .navbar ul li a {
    display: block;
    text-decoration: none;
    color: #48fc30;
    padding: 4px 15px 4px 15px;
    background: #silver;
    margin-left: 1px;
    }

    .navbar ul li a signup {
    background: #black;
    }

    .navbar ul li a:hover {
    background: #grey;
    }


    .navbar li:hover ul {
    display: block;
    position: absolute;
    }

    .navbar li:hover li {
    float: none;
    font-size: 11px;
    }

    .navbar li:hover a {
    background: #red;
    }

    .navbar li:hover li a:hover {
    background: #blue;
    }

  • Danke für den Tipp. Aber kannst du mir evtl. sagen an welcher stelle ich das clearen muss? hab verschiedene ausprobiert. klappt leider nicht.