Onsen UI CSS Component Material Button Last Updated : 05 Jul, 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. Buttons are one of the most common UI elements. When we want to perform some action and want to navigate to a different page then we can use the button. Onsen UI CSS Component Material Button is used to create the material button using button--material class. Onsen UI CSS Component Material Button Class: button--material: This class is used to create the material button. Syntax: <button class="button button--material"> ... </button> Example 1: The following example demonstrates the Onsen UI CSS Component Material 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> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> Onsen UI CSS Component Material Button </h3> <button class="button button--material"> GeeksforGeeks </button> </center> </body> </html> Output: Example 2: The following example demonstrates the Onsen UI CSS Component Material 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> <h1 style="color: green;"> GeeksforGeeks </h1> <h3> Onsen UI CSS Component Material Button </h3> <button class="button button--material"> Java </button> <button class="button button--material" disabled> Python </button> <button class="button button--material"> C++ </button> </center> </body> </html> Output: Reference: https://onsen.io/v2/api/css.html#button-category Comment More infoAdvertise with us Next Article Onsen UI CSS Component Material Button gopaldhangar Follow Improve Article Tags : Web Technologies CSS Onsen-UI Onsen-UI CSS-Components Similar Reads 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 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 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 CSS Component Material 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 Button 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. In this article, we will see the various Button CSS Components in Onsen UI. The Button is used to perform some action whe 3 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 Light 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 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 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 Like