Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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
<!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>
Advertisements
