Block Level Statement

Types of Elements in HTML - Inline vs Block Level vs Empty-Void

Created: 2022-09-08
Tags: #permanent


<p>Hello</p> 
<p>Ma</p> 
<p>Fucker</p>

<p> is a block-level Element
Starts a new line when used

Hello
Ma
Fucker

Note:
block and inline should not be confused with respective terms in the types of CSS boxes

References