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="/https/www.tutorialspoint.com/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">[email protected]</p>
               </div>
            </div>
         </form>
      </div>
   </body>
</html>
Updated on: 2020-06-12T19:13:27+05:30

173 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements