Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Attach text, icons, and buttons to inputs.
Input Groups is easiest to learn by reading the example, changing it, and observing the result.
<div class="input-group mb-3">
<span class="input-group-text">@</span>
<input type="text" class="form-control" placeholder="username" aria-label="Username">
</div>
<div class="input-group">
<input type="text" class="form-control" placeholder="Search lessons" aria-label="Search">
<button class="btn btn-primary" type="button">Search</button>
</div>Practice the Input Groups example in a small scratch file, then explain what changed and why.