Allow a label to be used for form validation with Bootstrap


Use the .control-label class in Bootstrap to allow a label to be used for form validation.

You can try to run the following code to implement the control-label 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>
      <div class = "container">
         <form class = "form-horizontal">
            <div class = "form-group">
               <label class = "control-label col-sm-2" for="email">Email-</label>
               <div class = "col-sm-10">
                  <p class = "form-control-static">amit@demo.com</p>
               </div>
            </div>
         </form>
      </div>
   </body>
</html>

Updated on: 12-Jun-2020

130 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements