Problem Statement
Which class applies Bootstrap 5 styling to text inputs and textareas?
Explanation
Use the class .form-control on inputs and textareas to give them consistent padding, border, and focus styles. It ensures the elements align neatly with other form components.
Code Solution
SolutionRead Only
<input type='text' class='form-control' placeholder='Your name'>
