fix(curriculum): update examples for inline-block lesson (#63853)

This commit is contained in:
André Souza
2025-11-20 17:37:16 -03:00
committed by GitHub
parent 7fd3fc2f4e
commit cf250739bf

View File

@@ -31,8 +31,8 @@ Let's take a look at an example.
<link href="styles.css" rel="stylesheet">
<div class="container">
<span class="inline-block-element element1">Inline-Block Element 1</span>
<span class="inline-block-element element2">Inline-Block Element 2</span>
<span class="inline-block-element element1">Inline-Block</span>
<span class="inline-block-element element2">Inline-Block</span>
</div>
```
@@ -70,8 +70,8 @@ Here is the revised CSS:
<link href="styles.css" rel="stylesheet">
<div class="container">
<span class="inline-block-element element1">Inline-Block Element 1</span>
<span class="inline-block-element element2">Inline-Block Element 2</span>
<span class="inline-block-element element1">Span element</span>
<span class="inline-block-element element2">Span element</span>
</div>
```