Browse Source

nesting-organs: add code example to nest html elements

content-update
Marie Malarme 3 years ago committed by Clément
parent
commit
209b38f668
  1. 13
      subjects/nesting-organs/README.md

13
subjects/nesting-organs/README.md

@ -52,6 +52,19 @@ p {
}
```
### Code examples
Nest several elements:
```html
<div id="first-element">
<span id="second-element"></span>
<div id="third-element">
<p id="fourth-element"></p>
</div>
</div>
```
### Expected output
This is what you should see in the browser:

Loading…
Cancel
Save