Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dashedName: step-14

# --description--

將文本 `cute cats` 轉化爲鏈接到 `https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg` 的錨元素。
Turn the existing text `cute cats` into an anchor elements that links to `https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg`.

# --hints--

Expand All @@ -29,6 +29,12 @@ assert.strictEqual(document.querySelector('a')?.innerText, "cute cats");
assert.strictEqual(document.querySelector('a')?.href, "https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg");
```

There should only be one instance of the phrase `cute cats` in your code.

```js
assert.strictEqual(code.indexOf("cute cats"),code.lastIndexOf("cute cats"));
```

`p` 元素的文本仍應是 `Everyone loves cute cats online!`。

```js
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dashedName: step-61

# --description--

使用類選擇器,爲你的 `.cat-mouth-line-left` 元素設置 `position` 爲 `absolute`、`top` > 爲 `88px` 和 `left` 爲 `74px`。 這會將其移動到正確的位置。
使用類選擇器,爲你的 `.cat-mouth-line-left` 元素設置 `position` 爲 `absolute`、`top` 爲 `88px` 和 `left` 爲 `74px`。 這會將其移動到正確的位置。

# --hints--

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Listen to Tom and fill in the blank.

### --feedback--

This blank refers to something difficult to see or to find.
This blank refers to something difficult to see or find.

# --scene--

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dashedName: task-36

# --description--

`Save on` means to reduce the amount of something, like time, money, or effort. For example, `By shopping during the sale, she saved on clothing expenses.` It shows an past action of reducing spending on clothes.
`Save on` means to reduce the amount of something, like time, money, or effort. For example, `By shopping during the sale, she saved on clothing expenses.` It shows a past action of reducing spending on clothes.

# --fillInTheBlank--

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Which of the following sentences correctly uses the word `any`?

### --feedback--

This is a correct because `any` should be used in negative statements or questions.
This is correct because `any` should be used in negative statements or questions.

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Anna: You have a one-hour lunch break around noon every day. Bring your lunch or

# --description--

`Lunch Break`: A period during the workday set aside for eating lunch. Example: `I usually take my lunch break at 1:00 PM.`
`Lunch break`: A period during the workday set aside for eating lunch. Example: `I usually take my lunch break at 1:00 PM.`

`Noon`: 12:00 PM, in the middle of the day. Example: `We have our team meeting at noon.`

Expand Down
Loading