Assessment of Styling a biography page

Kindly help with aStyling a biography page

Nice work, @enfash! :clap:

I have just two comments about following rule:

a:link + .firstList,
a:hover {
  color: green;
  color: #fb6542;
}
  • The first line doesn’t do what you probably think it does. The plus sign is called adjacent sibling combinator. It selects the second element when it immediately follow the first element. What you probably wanted to do is select the element that matches both (a:link and .firstList). This would be a:link.firstList (without a space).
  • Your second color property always overwrites the first one.

Cheers,
Michael

PS: Your email address is visible in your post. It ended up in the optional “name” field of your profile. I recommend removing it.