Problem Statement
Which class renders plain, uneditable text that aligns with form controls?
Explanation
Apply .form-control-plaintext to show text in line with other form controls but uneditable. It’s useful for displaying generated IDs or read-only details.
Code Solution
SolutionRead Only
<input type='text' readonly class='form-control-plaintext' value='ID-1024'>
