fix(curriculum): correct typo in Lists, Links, CSS backgrounds and borders lesson (#65131)

This commit is contained in:
Yael Seror
2026-01-14 19:30:23 +02:00
committed by GitHub
parent 3fef165de5
commit 4f394fdd94
2 changed files with 2 additions and 2 deletions

View File

@@ -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.
---

View File

@@ -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.