Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Show small hint labels on hover and focus.
Tooltips is easiest to learn by reading the example, changing it, and observing the result.
<button type="button" class="btn btn-secondary"
data-bs-toggle="tooltip" data-bs-title="Helpful hint">
Hover me
</button>
<script>
const triggers = document.querySelectorAll('[data-bs-toggle="tooltip"]');
triggers.forEach(el => new bootstrap.Tooltip(el));
</script>Practice the Tooltips example in a small scratch file, then explain what changed and why.