CSS Display Property

CSS Display Property


CSS Display property
The display CSS property is fundamental for controlling the layout and flow of an HTML document. 
Most elements have a default display value of either block or inline (though some elements have other default values).
Inline  -
An inline element occupies only as much width as necessary. 
It stacks horizontally with other elements of the same type and may not contain other non-inline elements.
This is some bolded text!
As demonstrated above, two inline elements, and , are in-line (hence the name) and do not break the flow of the text.
Block - 
A block element occupies the maximum available width of its parent element. 
It starts with a new line and, in contrast to inline elements, it does not restrict the type of elements it may contain.
Hello world!
This is an example!
The div element is block-level by default, and as shown above, the two block elements are vertically stacked and, unlike the inline elements, the flow of the text breaks.
Inline Block
The inline-block value gives us the best of both worlds: it blends the element in with the flow of the text while allowing us to use padding, margin, height and similar properties which have no visible effect on inline elements.
 Elements with this display value act as if they were regular text and as a result are affected by rules controlling the flow of text such as text-align. 
By default they are also shrunk to the smallest size possible to accommodate their content.

  • First Element

  • Second Element

  • Third Element


  •  

 
Output-