Add plain text next to a form label within a form with Bootstrap


To add plain text to a form label within a form, use the .form-control-static in Bootstrap.

You can try to run the following code to implement a .form-control-static class in Bootstrap

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <form class = "form-horizontal">
         <div class = "form-group">
            <label class = "control-label col-sm-2" for = "email">Email:</label>
            <div class = "col-sm-5">
               <p class = "form-control-static">amit@demo.com</p>
            </div>
         </div>
      </form>
   </body>
</html>

Lakshmi Srinivas
Lakshmi Srinivas

Programmer / Analyst / Technician

Updated on: 12-Jun-2020

336 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements