Ansgarm74: Wie bekomme ich die Menuleiste horizontral

Beitrag lesen

Hallo zusammen,
ich habe ein Menu (vertikal) mit CSS-Unterstützung geschrieben und möchte dies nun horizontal einfügen.
Hier die Einträge der CSS-Datei für die Steuerung:
  html, body { height: 100%;
    background-color: rgb(255, 255, 255);
    }
  #steuerung { float: left;
    height: auto;
    margin-right: 1em;
    width: 12em;
    background-color: rgb(204, 204, 204);
    }

#steuerung strong, #steuerung a { border-top: 1px solid black;
    padding: 6px 6px 6px 20px;
    color: rgb(0, 0, 0);
    display: block;
    text-decoration: none;
    background-color: rgb(204, 204, 204);
    }

#steuerung strong { background: rgb(200, 200, 200) none no-repeat scroll left 50%;
    -moz-background-clip: initial;
    -moz-background-origin: initial;
    -moz-background-inline-policy: initial;
    color: white;
    }

#steuerung ul { border-bottom: 1px solid black;
    background-color: rgb(102, 255, 153);
    }

#steuerung a:hover { border-top: 1px solid white;
    border-bottom: 1px solid white;
    color: rgb(255, 255, 255);
    background-color: rgb(204, 204, 204);
    }

Was mus ich ändern, damit das Menu horizontal wird.

Gruß
A. Müller-Wissmann