-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(i18n,learn): processed translations
- Loading branch information
Showing
1,540 changed files
with
256,224 additions
and
2,084 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
.../25-front-end-development/lecture-html-fundamentals/670803abcb3e980233da4768.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
--- | ||
id: 670803abcb3e980233da4768 | ||
title: What Are Divs and Spans, and When Should You Use Them? | ||
challengeType: 11 | ||
videoId: nVAaxZ34khk | ||
dashedName: what-are-divs-and-spans | ||
--- | ||
|
||
# --description-- | ||
|
||
Watch the video and answer the questions below. | ||
|
||
# --questions-- | ||
|
||
## --text-- | ||
|
||
What type of element is a `div` element? | ||
|
||
## --answers-- | ||
|
||
An inline-level element. | ||
|
||
### --feedback-- | ||
|
||
Think about how a `div` element occupies space. | ||
|
||
--- | ||
|
||
An inline-block element. | ||
|
||
### --feedback-- | ||
|
||
Think about how a `div` element occupies space. | ||
|
||
--- | ||
|
||
A block-inline element. | ||
|
||
### --feedback-- | ||
|
||
Think about how a `div` element occupies space. | ||
|
||
--- | ||
|
||
A block-level element. | ||
|
||
## --video-solution-- | ||
|
||
4 | ||
|
||
## --text-- | ||
|
||
What kind of an element is a `span` element? | ||
|
||
## --answers-- | ||
|
||
An inline-level element. | ||
|
||
### --feedback-- | ||
|
||
Focus on how a `span` element behaves within text or other elements. | ||
|
||
--- | ||
|
||
An inline element. | ||
|
||
--- | ||
|
||
A block element. | ||
|
||
### --feedback-- | ||
|
||
Focus on how a `span` element behaves within text or other elements. | ||
|
||
--- | ||
|
||
A block-level element. | ||
|
||
### --feedback-- | ||
|
||
Focus on how a `span` element behaves within text or other elements. | ||
|
||
## --video-solution-- | ||
|
||
2 | ||
|
||
## --text-- | ||
|
||
What should you group using a `div` element? | ||
|
||
## --answers-- | ||
|
||
Block-level content and larger sections. | ||
|
||
--- | ||
|
||
Inline texts and smaller sections. | ||
|
||
### --feedback-- | ||
|
||
Think about related and larger content. | ||
|
||
--- | ||
|
||
The whole HTML content. | ||
|
||
### --feedback-- | ||
|
||
Think about related and larger content. | ||
|
||
--- | ||
|
||
A small chuck of text. | ||
|
||
### --feedback-- | ||
|
||
Think about related and larger content. | ||
|
||
## --video-solution-- | ||
|
||
1 |
Oops, something went wrong.