Menu
Text & Formatting

<div> Generic Block

A non-semantic block container — usually styled with CSS.

1When to Use <div>

Use <div> when no semantic element fits (e.g. <article>, <section>, <header>). It is purely for grouping and styling.

Example Code
<div class="card">
  <div class="card-header">Title</div>
  <div class="card-body">Body</div>
</div>

Finished reading?

Mark this topic as complete to track progress.