Skip to content

Commit

Permalink
fix(curriculum): improve step 3 description and add example in build-…
Browse files Browse the repository at this point in the history
…a-heart (#63692)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
  • Loading branch information
2 people authored and GitHub committed Nov 11, 2025
1 parent e9e5347 commit 25b1397
Showing 1 changed file with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,19 @@ dashedName: step-3

# --description--

You are getting closer. The next thing to do is to set the `viewBox` attribute of the `svg` element. This will
control how much of the image is visible. The first two numbers set the center of the image.
You are getting closer, now look at this example:

The following two numbers set the size of the image we can see: width followed by height.
```html
<svg viewBox="0 0 50 50">
</svg>
```

The `viewBox` attribute controls what part of the image is visible inside the SVG.

- The first two numbers (`0 0`) set the starting position of the `viewBox` — the top-left corner (x and y).
- The next two numbers (`50 50`) define the `viewBox`'s width and height.

Since here the entirety of the icon should be visible, you should set the `viewBox` attribute to `0 0 24 24`.
Set the `viewBox` attribute to `0 0 24 24`.

# --hints--

Expand Down

0 comments on commit 25b1397

Please sign in to comment.