Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Use heading classes and large display headings for hierarchy.
Headings & Display Headings is easiest to learn by reading the example, changing it, and observing the result.
<h1 class="display-4 fw-bold">Display heading</h1>
<p class="lead">A standout subheading paragraph.</p>
<p class="text-truncate" style="max-width: 200px;">This long line will be truncated with an ellipsis.</p>
<p class="text-uppercase text-muted">Small print</p>
<ul class="list-unstyled">
<li>Clean list item</li>
<li>No bullets or padding</li>
</ul>Practice the Headings & Display Headings example in a small scratch file, then explain what changed and why.