Inline Elements Vs Block Elements in HTML

To create a good looking web page, it’s important to master the concept of the differences between block and inline elements when constructing a page. These two types of elements determine how the content is displayed, how it is arranged on the page, and how the page looks as an overall appearance and usability.

Block Elements

By default, Block elements fill the full width of their containing element on new lines when. Due to this, they’re perfect for stitching together large chunks of content, like static headings, paragraphs, or containers for other elements.

Examples of Block Elements

  • `<div>`: A container for structuring contents.
  • `<p>`: For text, represents a paragraph. learn about more p tag
  • `<h1>` to `<h6>`: Declares heading with different levels of importance. learn about more
  • `<section>`: It groups the related content in sections.
  • `<footer>`: Used to put footer content, such as copyright notices. 

Characteristics

  • Begins on a new line always.
  • It takes up the full width of the container it’s placed in.
  • May contain other block or inline elements.

Example

				
					<div>
  <h2>About Us</h2>
  <p>Our company has been providing excellent services for over a decade.</p>
</div>

				
			

Inline Elements

Inline elements are not block elements as they do not put on a new line. With a little bit of CSS, they’ll take up as much space as their content needs and align themselves inside the surrounding text or inline elements.

Characteristics:

  • The content stays on the same line as other content.
  • Has no width greater than the width of the content it contains.
  • It cannot have block elements inside it.

Examples of Inline Elements

  • <span>:
  • <a>: Represents hyperlinks.
  • <strong>:
  • <em>:
  • <img>:
				
					<p>Click <a href="about.html">here</a> to learn more about us.</p>

				
			

Key Differences Between Block and Inline Elements

  1. Line Behavior:
    1. Inline elements project out of lines, kinda flowing with text.
  2. Width:
    1. Block elements will fill the width of a container if they have the width (i.e. for widths greater than its containing element).
    2. Inline elements only take the width they need to fit their content.
  3. Content:
    1. Block elements contain other Block as well as Inline elements.
    2. Inline elements can only contain text or other inline element.

Try It Yourself

Share with friends