LinkedIn CSS Skill Assessment Quiz Answers

For this code, what is the font color of the hypertext link?

Latest Update on 2nd June, 2022 by Certification Course Answers

For this code, what is the font color of the hypertext link?

ul {
  --color: red;
}
p {
  color: var(--color);
}
a {
  color: var(--color, orange);
}
<p>Paragraph</p>
<ul>
  <li>
    <a href="#">list item a link </a>
  </li>
  <li>list item</li>
</ul>
  •  red
  •  orange
  •  blue
  •  black

Correct Answer:

  •  red

Latest Updates

No posts found in this category.