Hello out there!
link:
Hallo <----(Farbe Rot, Schrift Fett)
das ist ein Text <----(Farbe schwarz)hover:
Hallo <----(Farbe Grün, Schrift Fett)
das ist ein Text <----(Farbe Grün)Was ist daran so schwer, genau das, was du mit Worten beschreibst, in CSS zu notieren?
a {color: black}
a strong {color:red}
a:hover, a:hover strong {color:green}
>
> angewandt auf
>
> `<a href="http://example.net"><strong>Hallo</strong> das ist ein Text</a>`{:.language-html}
>
> See ya up the road,
> Gunnar
Hey super Leute, genau das ist es!!!
Habe es so ähnlich versucht nur mit einem kleinen Fehler.
a.strong{....}
Dieser Code passt schon:
~~~css
a {color: black}
a strong {color:red}
a:hover, a:hover strong {color:green}
nur noch eine dumme Frage :-)
wie baue ich in den Code noch a:link, a:visited und a:activ ein?
VIELEN DANK für die schnelle Antwort euch beiden!