LinkedIn CSS Skill Assessment Quiz Answers

Which choice will not set all links that include domain.com to pink?

Latest Update on 13th March, 2022 by Certification Course Answers

Which choice will not set all links that include domain.com to pink?

[] a[href$='domain.com'] {
  color: pink;
}

[x] a[href='*domain.com'] {
  color: pink;
}

[] a[href*='domain.com'] {
  color: rgb(255, 155, 155);
}

[] a[href*='domain.com'] {
  color: pink;
}

Correct Answer:
[x] a[href=’*domain.com’] {
color: pink;
}

Latest Updates

No posts found in this category.