border-radius nicht die Anwendung der ul-element?

Habe ich den folgenden CSS-code, aber der -moz-border-radius und -webkit-border-radius Stile werden nicht angewendet, um die UL. Gibt es etwas offensichtlich ich ' m fehlen, wie, warum, oder hat -border-radius keine Unterstützung für UL-Elemente?

ul.navigation { 
    margin-top: 7px;
    margin-bottom: 10px;
    list-style-type: none;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
}

ul.navigation li a {
    text-transform: uppercase;
    text-align: left;
    font-size: 13px;
    padding: 8px;
    display: block;
    border: 1px solid #375D81;
    margin-top: -1px;
    color: #183152;
    background: #ABC8E2;
    text-decoration: none;
}

Ebenfalls, sollte ich auch anwenden border-radius im moment für zukünftige CSS3-Kompatibilität?

InformationsquelleAutor James Inman | 2009-07-22
Schreibe einen Kommentar