Nicht mehr ganz neu hier
Hallo an Alle,
ich bastle gerade an meinem Prüfungsprojekt und bitte um Eure Hilfe! :'(
Habe folgendes Problem:
Hab die Navi in einem Div-container erstellt. Bei hover, visited und active sollte jeweils ein anderer Button dargestellt werden! Leider funzt der CSS-deklarierte #navi a:active nicht!
Hier das CSS: <!--- komm leider nicht auf den Fehler -->
#navi a {
text-decoration: none;
color: #007934;
background-image: url(../img/button_1.png);
background-repeat: no-repeat;
display: block;
height: 30px;
width: 145px;
text-align: center;
line-height: 30px;
text-transform: uppercase; /* Großbuchstaben */
}
#navi a:link {
text-decoration: none;
color: #007934;
background-image: url(../img/button_1.png);
background-repeat: no-repeat;
display: block;
height: 30px;
width: 145px;
text-align: center;
line-height: 30px;
text-transform: uppercase; /* Großbuchstaben */
}
#navi a:visited {
text-decoration:none;
}
#navi a:hover {
text-decoration: none;
color: #930;
background-image: url(../img/button_2.png);
background-repeat: no-repeat;
height: 30px;
width: 145px;
display: block;
line-height: 30px;
}
#navi a:active {
text-decoration: none;
color: #F60;
background-image: url(../img/button_3.png);
background-repeat: no-repeat;
height: 30px;
width: 145px;
display: block;
line-height: 30px;
}
#navi a:focus {
text-decoration: none;
color: #F60;
background-image: url(../img/button_3.png);
background-repeat: no-repeat;
height: 30px;
width: 145px;
display: block;
line-height: 30px;
}
Kann ich hier eventuell das CSS noch ein bisschen vereinfachen?
Danke vielmals im voraus : und lg
Mathilde
ich bastle gerade an meinem Prüfungsprojekt und bitte um Eure Hilfe! :'(
Habe folgendes Problem:
Hab die Navi in einem Div-container erstellt. Bei hover, visited und active sollte jeweils ein anderer Button dargestellt werden! Leider funzt der CSS-deklarierte #navi a:active nicht!
Hier das CSS: <!--- komm leider nicht auf den Fehler -->
#navi a {
text-decoration: none;
color: #007934;
background-image: url(../img/button_1.png);
background-repeat: no-repeat;
display: block;
height: 30px;
width: 145px;
text-align: center;
line-height: 30px;
text-transform: uppercase; /* Großbuchstaben */
}
#navi a:link {
text-decoration: none;
color: #007934;
background-image: url(../img/button_1.png);
background-repeat: no-repeat;
display: block;
height: 30px;
width: 145px;
text-align: center;
line-height: 30px;
text-transform: uppercase; /* Großbuchstaben */
}
#navi a:visited {
text-decoration:none;
}
#navi a:hover {
text-decoration: none;
color: #930;
background-image: url(../img/button_2.png);
background-repeat: no-repeat;
height: 30px;
width: 145px;
display: block;
line-height: 30px;
}
#navi a:active {
text-decoration: none;
color: #F60;
background-image: url(../img/button_3.png);
background-repeat: no-repeat;
height: 30px;
width: 145px;
display: block;
line-height: 30px;
}
#navi a:focus {
text-decoration: none;
color: #F60;
background-image: url(../img/button_3.png);
background-repeat: no-repeat;
height: 30px;
width: 145px;
display: block;
line-height: 30px;
}
Kann ich hier eventuell das CSS noch ein bisschen vereinfachen?
Danke vielmals im voraus : und lg
Mathilde