Adding changes to Inline element paragraph (#29830)

* Adding changes to Inline element paragraph

* correct grammar
This commit is contained in:
vinos Shimray
2018-12-14 01:04:06 +05:30
committed by Randell Dawson
parent 84306022a6
commit 96f8a21f28

View File

@ -19,7 +19,8 @@ Common **block-level elements** are `<div>`,`<p>`,`<article>`,`<section>`,`<figu
#### Inline Element : #### Inline Element :
Inline as the name says "included as a part of the main text and not as a separate section". Inline elements occupy the width as needed within the space defined by the main element. Unlike block-level elements, they do not begin on new lines.
Inline as the name says "included as a part of the main text and not as a separate section". Inline elements occupy the space as needed within the space defined by the main element. Unlike block-level elements, they do not begin on new lines. Instead, they begin from the line where it is specified which does not break the flow of the content.
Some of the **inline elements** are `<a>`,`<span>`,`<img>`,`<code>`,`<cite>`,`<button>`,`<input>` etc. Some of the **inline elements** are `<a>`,`<span>`,`<img>`,`<code>`,`<cite>`,`<button>`,`<input>` etc.