Ok habe jetzt mehrere CSS Tags gebildet mit:
        
        
          #menue
          
          a:link    { color: #ffffff; text-decoration: none; }
          a:visited { color: #ffffff; text-decoration: none; }
          a:focus   { color: #ffffff; text-decoration: none; background: #871201; }
          a:hover   { color: #ffffff; text-decoration: none; background: #871201; }
          a:active  { background: #ffffff;}
        
        
          #inhalt
          
          a:link    { color: #fffabc; text-decoration: none; }
          a:visited { color: #fffabc; text-decoration: none; }
          a:focus   { color: #fffabc; text-decoration: none; background: #121201; }
          a:hover   { color: #fffabc; text-decoration: none; background: #121201; }
          a:active  { background: #fffabc;}
        
        
          Habe jetzt das Problem das im Mozilla Browser das Tag #inhalt in die id zone von #menue mitmischt woran kann das liegen? aber andersherum nicht!
        
        
          :)