Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions learn/tasks/selectors/marking.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ span {

## Task 2: class and id selectors

This tests that the student understands he different between these and also how to target multiple classes on an item.
This tests that the student understands the difference between these and also how to target multiple classes on an item.

```
#special {
Expand Down Expand Up @@ -78,7 +78,7 @@ tr:nth-child(even) {

## Task 4: Combinators

This task checks that the student understands how to use the different combinators. They are asked to make paragraphs that dirctly follow an `h2` red, and to remove the list bullets and add a bottom border only for the direct children of the ul with a class of `.list`.
This task checks that the student understands how to use the different combinators. They are asked to make paragraphs that directly follow an `h2` red, and to remove the list bullets and add a bottom border only for the direct children of the ul with a class of `.list`.

```
h2 + p {
Expand Down