diff options
author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-11-07 21:04:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-07 21:04:18 +0100 |
commit | b8411e69dbd90d499f9fe2f485c22511cf8b6505 (patch) | |
tree | c23e293c00a7a23d6e12475e26151f1af80a60e0 /files/fr/web/html/inline_elements | |
parent | cef2032e46332b6df4aa644e5f8edeea24909f0f (diff) | |
download | translated-content-b8411e69dbd90d499f9fe2f485c22511cf8b6505.tar.gz translated-content-b8411e69dbd90d499f9fe2f485c22511cf8b6505.tar.bz2 translated-content-b8411e69dbd90d499f9fe2f485c22511cf8b6505.zip |
Fix HTML live sample errors (#3002)
Diffstat (limited to 'files/fr/web/html/inline_elements')
-rw-r--r-- | files/fr/web/html/inline_elements/index.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/fr/web/html/inline_elements/index.md b/files/fr/web/html/inline_elements/index.md index 7c8bc2f452..e75b49d17e 100644 --- a/files/fr/web/html/inline_elements/index.md +++ b/files/fr/web/html/inline_elements/index.md @@ -39,7 +39,7 @@ ligne.</p> Dans cet exemple, l'élément [`<p>`](/fr/docs/Web/HTML/Element/p) (le paragraphe) est un élément de bloc qui contient du texte. Dans ce texte, on a un élément [`<span>`](/fr/docs/Web/HTML/Element/span) qui est un élément en ligne. L'élément `<span>` étant un élément en ligne, le paragraphe est bien affiché sous la forme d'un flux de texte sans rupture : -{{EmbedLiveSample("Inline", "", 120)}} +{{EmbedLiveSample("Élément_en_ligne", "", 120)}} ```css hidden body { @@ -77,7 +77,7 @@ body { Et voici le résultat qu'on obtient : -{{EmbedLiveSample("Block-level", "", 150)}} +{{EmbedLiveSample("Élément_de_bloc", "", 150)}} On voit ici que l'élément `<div>` modifie complètement la disposition du texte et le découpe en trois parties : une partie avant le `<div>`, une partie constituée avec le texte de l'élément `<div>` et une dernière partie ensuite. |