diff --git a/guide/english/html/elements/div-tag/index.md b/guide/english/html/elements/div-tag/index.md index 979b72dedf..5d801c23a1 100644 --- a/guide/english/html/elements/div-tag/index.md +++ b/guide/english/html/elements/div-tag/index.md @@ -15,7 +15,10 @@ Here is an example of how to display a section in the same color: ``` -#### More Information: +#### Differences between `` and `
` +The main difference is that `` is an inline element, while `
` is a block element. This means that a `` can appear within a sentence or paragraph (as in the example above), while a `
` will start a new line of content. Note that the CSS `display` property can change this default behavior, but that's way beyond the scope of this article! + +##### More Information: Tutorialspoint MDN