Browser-zocker
Mitglied
HI sry wenns falsche Überschrift ist wusst net wie ichs nennen soll hier erst einmal ein Code
Das ist der Code mit dem Problem
wie geht dieses .feld2 mit hover? oder geht es gar nicht
schon mal danke
Lg
Browser-Zocker
Code:
<style type="text/css">
fieldset {
background-color: green;
}
fieldset:hover {
background-color: #42EE8A;
}
.feld2 {
background-color: white;
}
.feld2:hover {
background-color: blue;
}
a {
background-color: grey;
outline: none;
}
a:hover {
background-color: #55fb33;
color: black;
outline: none;
font-size: 18pt;
}
a:active: {
text-decoration: none;
outline: none;
color:blue;
}
legend {
background-color: white;
}
</style>
Das ist der Code mit dem Problem
Code:
.feld2 {
background-color: white;
}
.feld2:hover {
background-color: blue;
}
schon mal danke
Lg
Browser-Zocker