From 4f394fdd949d41d1909ed7f52725db045dcd9531 Mon Sep 17 00:00:00 2001 From: Yael Seror Date: Wed, 14 Jan 2026 19:30:23 +0200 Subject: [PATCH] fix(curriculum): correct typo in Lists, Links, CSS backgrounds and borders lesson (#65131) --- .../66ed8fd7f45ce3ece4053eb0.md | 2 +- .../671a88d636cebc5fbd407b78.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/quiz-css-backgrounds-and-borders/66ed8fd7f45ce3ece4053eb0.md b/curriculum/challenges/english/blocks/quiz-css-backgrounds-and-borders/66ed8fd7f45ce3ece4053eb0.md index 15b8d5a9a3e..ec36f59fd81 100644 --- a/curriculum/challenges/english/blocks/quiz-css-backgrounds-and-borders/66ed8fd7f45ce3ece4053eb0.md +++ b/curriculum/challenges/english/blocks/quiz-css-backgrounds-and-borders/66ed8fd7f45ce3ece4053eb0.md @@ -69,7 +69,7 @@ It is used to set the background size for an element. --- -It is used to style links that have not be visited by the user. +It is used to style links that have not been visited by the user. --- diff --git a/curriculum/challenges/english/blocks/review-css-backgrounds-and-borders/671a88d636cebc5fbd407b78.md b/curriculum/challenges/english/blocks/review-css-backgrounds-and-borders/671a88d636cebc5fbd407b78.md index 63109b0c7ea..11c5cbaf7fc 100644 --- a/curriculum/challenges/english/blocks/review-css-backgrounds-and-borders/671a88d636cebc5fbd407b78.md +++ b/curriculum/challenges/english/blocks/review-css-backgrounds-and-borders/671a88d636cebc5fbd407b78.md @@ -23,7 +23,7 @@ dashedName: review-css-backgrounds-and-borders ## Styling Links - **`pseudo-class`**: This is a keyword added to a selector that allows you to select elements based on a particular state. Common states would include the `:hover`, `:visited` and `:focus` states. -- **`:link pseudo-class`**: This pseudo-class is used to style links that have not be visited by the user. +- **`:link pseudo-class`**: This pseudo-class is used to style links that have not been visited by the user. - **`:visited pseudo-class`**: This pseudo-class is used to style links where a user has already visited. - **`:hover pseudo-class`**: This pseudo-class is used to style elements where a user is actively hovering over them. - **`:focus pseudo-class`**: This pseudo-class is used to style an element when it receives focus. Examples would include `input` or `select` elements where the clicks or tabs on the element to focus it.