HTML Elements Showcase-Inline vs Block

Introduction: In HTML, elements are broadly divided into two categories: block-level and inline. Block elements take up the full width, while inline elements only take as much space as needed.

[Block Elements] [Inline Elements] [Comparison]

Block Elements


Inline Elements


Comparison

Differences Between Inline and Block Elements
Block Elements Inline Elements
<div> <b>
<p> <i>
<h1> <u>
<h2> <strong>
<h6> <em>
<ul> <sup>
<ol> <sub>
<form> <mark>
<section> <abbr>
<article> <code>

[Back to Top]