Onsen UI CSS Component Material Checkbox Last Updated : 22 Jun, 2022 Comments Improve Suggest changes Like Article Like Report Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Checkboxes are used for instances where a user may wish to select multiple options, such as in the instance of a “check all that apply” question, in forms. Onsen UI CSS Component Material Checkbox is used to create the material checkbox in Onsen UI using the below classes. Onsen UI CSS Component Material Checkbox Classes: checkbox--material: This class is used to create the material checkbox.checkbox__input: This class is used to create the checkbox input.checkbox--material__input: This class is used to create the material checkbox input.checkbox__checkmark: This class is used to create the checkbox checkmark.checkbox--material__checkmark: This class is used to create the material type checkbox checkmark. Syntax: <label class="checkbox checkbox--material"> <input type="checkbox" class="checkbox__input checkbox--material__input"> <div class="checkbox__checkmark checkbox--material__checkmark"> </div> ... </label> Example 1: The following example demonstrates the Onsen UI CSS Component Material Checkbox. HTML <!DOCTYPE html> <html> <head> <!-- CDN links of Onsen UI library --> <link rel="stylesheet" href= "https://unpkg.com/onsenui/css/onsenui.css"> <link rel="stylesheet" href= "https://unpkg.com/onsenui/css/onsen-css-components.min.css"> <script src= "https://unpkg.com/onsenui/js/onsenui.min.js"> </script> </head> <body> <center> <h2 style="color: green;"> GeeksforGeeks </h2> <strong> Onsen UI CSS Component Material Checkbox </strong> <br> <br> <label class="checkbox checkbox--material"> <input type="checkbox" class="checkbox__input checkbox--material__input"> <div class="checkbox__checkmark checkbox--material__checkmark"> </div> GeeksforGeeks </label> </center> </body> </html> Output: Example 2: The following example demonstrates the Onsen UI CSS Component Material Checkbox. HTML <!DOCTYPE html> <html> <head> <!-- CDN links of Onsen UI library --> <link rel="stylesheet" href= "https://unpkg.com/onsenui/css/onsenui.css"> <link rel="stylesheet" href= "https://unpkg.com/onsenui/css/onsen-css-components.min.css"> <script src= "https://unpkg.com/onsenui/js/onsenui.min.js"> </script> </head> <body> <center> <h2 style="color: green;"> GeeksforGeeks </h2> <strong> Onsen UI CSS Component Material Checkbox </strong> <br> <br> <label class="checkbox checkbox--material"> <input type="checkbox" class="checkbox__input checkbox--material__input"> <div class="checkbox__checkmark checkbox--material__checkmark"> </div> Java </label> <label class="checkbox checkbox--material"> <input type="checkbox" class="checkbox__input checkbox--material__input" checked> <div class="checkbox__checkmark checkbox--material__checkmark"> </div> C++ </label> <label class="checkbox checkbox--material"> <input type="checkbox" class="checkbox__input checkbox--material__input" disabled> <div class="checkbox__checkmark checkbox--material__checkmark"> </div> Python </label> </center> </body> </html> Output: Reference: https://onsen.io/v2/api/css.html#checkbox-category Comment More infoAdvertise with us Next Article Onsen UI CSS Component Material Checkbox harendra4373 Follow Improve Article Tags : Web Technologies CSS Onsen-UI Onsen-UI CSS-Components Similar Reads Onsen UI CSS Component Material List with Checkboxes Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Lists are used to store data or information on web pages in ordered or unordered form. Onsen UI CSS Component Material Li 2 min read Onsen UI CSS Component Material Button Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Buttons are one of the most common UI elements. When we want to perform some action and want to navigate to a different p 2 min read Onsen UI Checkbox CSS Components Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Checkboxes are used for instances where a user may wish to select multiple options, such as in the instance of a âcheck a 2 min read Onsen UI CSS Component Checkbox in List Item Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Checkboxes are used for instances where a user may wish to select multiple options, such as in the instance of a âcheck a 2 min read Onsen UI CSS Component Material Fab Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop.In this article, we are going to implement the Onsen UI CSS Component Material Fab. Fab or Floating Action Button is a but 2 min read Onsen UI CSS Component Material List Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Lists are used to store data or information on web pages in ordered or unordered form. Onsen UI CSS Component Material Li 2 min read Onsen UI CSS Component Material Flat Button Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Buttons are one of the most common UI elements. When we want to perform some action and want to navigate to a different p 2 min read Onsen UI CSS Component Basic Checkbox Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Checkboxes are used for instances where a user may wish to select multiple options, such as in the instance of a âcheck a 2 min read Onsen UI CSS Component Material Radio Button Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. Onsen UI CSS Component Material Radio Button is used to create the material radio button using Radio Button classes. To c 2 min read Onsen UI CSS Component Material Action Sheet Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. In this article, we are going to implement the Onsen UI CSS Component Material Action Sheet. Action sheets are used for d 3 min read Like