- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap Form CheckBox
Use checkbox class if you want the user to select any number of options from a list. Use .checkbox-inline class to a series of checkboxes for controls appear on the same line.
You can try to run the following code to implement Bootstrap form checkbox
Example
<!DOCTYPE html> <html> <head> <title>Try v1.2 Bootstrap Online</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> <label for = "name"></label>Favourite Live Streaming</label> <div class = "checkbox"> <label> <input type = "checkbox" value = "">Amazon Prime </label> </div> <div class = "checkbox"> <label> <input type = "checkbox" value = "">Hotstar </label> </div> </body> </html>
- Related Articles
- Bootstrap checkbox class
- Checkbox-inline Bootstrap class
- Bootstrap .checkbox-inline class
- HTML DOM Input Checkbox form Property
- Bootstrap form structure
- Bootstrap Inline Form
- Bootstrap Horizontal Form
- Bootstrap Form Input
- Bootstrap Form select
- Bootstrap Form Label
- Bootstrap Form TextArea
- Form Layouts in Bootstrap
- Bootstrap Form Radio Button
- Bootstrap Form Control States
- Bootstrap .form-control-static class

Advertisements