Onsen UI CSS Component Material Radio Button Last Updated : 22 Jun, 2022 Summarize Comments Improve Suggest changes Share 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. Onsen UI CSS Component Material Radio Button is used to create the material radio button using Radio Button classes. To create the material Radio Button, we will use the below classes. Onsen UI CSS Component Material Radio Button Classes: radio-button--material: This class is used to create the material radio button.radio-button--material__input: This class is used to create the material radio input.radio-button--material__checkmark: This class is used to create the material radio button checkmark. Syntax: <label class="radio-button radio-button--material"> <input type="radio" name="..." class="radio-button__input radio-button--material__input"> <div class="radio-button__checkmark radio-button--material__checkmark"> </div> ... </label> Example 1: The following example demonstrates the Onsen UI CSS Component Material Radio Button. 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 Radio Button </strong> <br> <br> <label class="radio-button radio-button--material"> <input type="radio" class="radio-button__input radio-button--material__input" name="rdi" checked> <div class="radio-button__checkmark radio-button--material__checkmark"> </div> Java </label> <label class="radio-button radio-button--material"> <input type="radio" class="radio-button__input radio-button--material__input" name="rdi"> <div class="radio-button__checkmark radio-button--material__checkmark"> </div> Python </label> </center> </body> </html> Output: Example 2: The following example demonstrates the Onsen UI CSS Component Material Radio Button. 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 Radio Button </strong> <br> <br> <label class="radio-button radio-button--material"> <input type="radio" class="radio-button__input radio-button--material__input" name="rdi" checked> <div class="radio-button__checkmark radio-button--material__checkmark"> </div> Java </label> <label class="radio-button radio-button--material"> <input type="radio" class="radio-button__input radio-button--material__input" name="rdi" disabled> <div class="radio-button__checkmark radio-button--material__checkmark"> </div> Python </label> <label class="radio-button radio-button--material"> <input type="radio" class="radio-button__input radio-button--material__input" name="rdi"> <div class="radio-button__checkmark radio-button--material__checkmark"> </div> C++ </label> </center> </body> </html> Output: Reference: https://onsen.io/v2/api/css.html#radio-button-category Comment More infoAdvertise with us Next Article Onsen UI CSS Component Material Toolbar Button H harendra4373 Follow Improve Article Tags : Web Technologies CSS Onsen-UI Onsen-UI CSS-Components Similar Reads 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 CSS Component Material Toolbar 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 Toolbar Button is used to create the material toolbar buttons using the toolbar-button--m 2 min read Onsen UI Radio Button CSS Components Onsen UI is a free open-source HTML5 framework for creating innovative and usable user interfaces (UI). It also simplifies user interface design, letting app developers concentrate on the programâs functionality. The pre-built CSS components from Onsen UI make it simple to quickly construct flexible 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 Radio Button 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. Lists are used to store data or information on web pages in ordered or unordered form. Onsen UI CSS Component Radio Butto 3 min read Onsen UI CSS Component Material Range 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 Range is used to create the material range slider to set any value by dragging the handle 2 min read Like