Onsen UI CSS Component Basic Toolbar Button Last Updated : 03 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. Onsen UI CSS Component Basic Toolbar Button is used to create the basic toolbar buttons using the below Onsen UI Toolbar Button classes. Onsen UI CSS Component Basic Toolbar Button Classes: toolbar-button: This class is used to create the toolbar button.toolbar-button--outline: This class is used to create the outline toolbar button.Syntax: <button class="toolbar-button"> ... </button>Example 1: The following example demonstrates the Onsen UI CSS Component Basic Toolbar 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 Basic Toolbar Button </h3> <button class="toolbar-button"> GeeksforGeeks </button> </center> </body> </html> Output: Example 2: The following example demonstrates the Onsen UI CSS Component Basic Toolbar 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 Basic Toolbar Button </h3> <button class="toolbar-button toolbar-button--outline"> <i class="ion-ios-menu list-item__icon"> </i> </button> <button class="toolbar-button"> GeeksforGeeks </button> <button class="toolbar-button toolbar-button--outline"> Outline GFG </button> </center> </body> </html> Output: Reference: https://onsen.io/v2/api/css.html#toolbar-button-category Comment More infoAdvertise with us Next Article Onsen UI CSS Component Basic Toolbar Button H harendra4373 Follow Improve Article Tags : Web Technologies CSS Onsen-UI Onsen-UI CSS-Components Similar Reads Onsen UI Toolbar 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 are going to implement the Onsen UI Toolbar button CSS Component. The Toolbar Button Component is use 2 min read Onsen UI CSS Component Basic 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 Tabbar 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. Tabbar is used to create the Tabs using Onsen UI classes. Onsen UI CSS Component Basic Tabbar is used to create the tabba 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 Toolbar CSS Components Onsen UI is an open-source, free tool for building distinctive and functional UIs. Additionally, it speeds up UI creation, letting app developers concentrate on the functionality of the software. Onsen UI is a sizable collection of strong user interface elements created especially for mobile apps. I 4 min read Like