oxo888oxo: Link-Zustände per CSS

Beitrag lesen

Hallo

Es geht mir um Links in meiner Navigation.
Die Navigation ist eine Liste mit der Class "Navigation".
Links sollen die Farbe #313131 haben und nicht unterstrichen sein.
Hover soll unberücksichtigt bleiben, weil ja auf mobilen Geräten sinnlos.
Visited ist in einer Navigation ja auch nicht schön, denke ich.

Aktuell habe ich es so gemacht:

  ul#Navigation a:link {  
    text-decoration: none;  
    color: #313131;  
  }  
  
  ul#Navigation a:hover, ul#Navigation a:focus, ul#Navigation a:active {  
    color: #ca1600;  
  }

Kann ich das noch weiter optimieren?
Ginge es auch so?

  ul#Navigation a:link {  
    text-decoration: none;  
    color: #313131;  
  }  
  
  ul#Navigation a:hover, a:focus, a:active {  
    color: #ca1600;  
  }

Oder werden damit dann für focus und active auch wieder alle Links ausserhalb meiner Navigation angesprochen?

Gruß
Ingo