Onsen UI CSS Component Basic Tabbar 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. Tabbar is used to create the Tabs using Onsen UI classes. Onsen UI CSS Component Basic Tabbar is used to create the tabbar using the below Onsen UI Tabbar classes. Onsen UI CSS Component Basic Tabbar Classes: tabbar: This class is used to create the tabbar.tabbar__item: This class is used to create the tabbar item.tabbar__button: This class is used to create the tabbar button.tabbar__label: This class is used to create the tabbar label.Syntax: <div class="tabbar"> <label class="tabbar__item"> <input type="radio" name="..."> <button class="tabbar__button"> <div class="tabbar__label"> ... </div> </button> </label> ... </div> Example 1: The following example demonstrates the Onsen UI CSS Component Basic Tabbar. 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 Tabbar </h3> <div class="tabbar"> <label class="tabbar__item"> <input type="radio" name="tabs" checked="checked"> <button class="tabbar__button"> <div class="tabbar__label"> Item 1 </div> </button> </label> <label class="tabbar__item"> <input type="radio" name="tabs"> <button class="tabbar__button"> <div class="tabbar__label"> Item 2 </div> </button> </label> <label class="tabbar__item"> <input type="radio" name="tabs"> <button class="tabbar__button"> <div class="tabbar__label"> Item 3 </div> </button> </label> </div> </center> </body> </html> Output: Example 2: The following example demonstrates the Onsen UI CSS Component Basic Tabbar. 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 Tabbar </h3> <div class="tabbar"> <label class="tabbar__item"> <input type="radio" name="tabs" checked="checked"> <button class="tabbar__button"> <i class="tabbar__icon ion-ios-menu"> </i> </button> </label> <label class="tabbar__item"> <input type="radio" name="tabs"> <button class="tabbar__button"> <i class="tabbar__icon ion-ios-hammer"> </i> </button> </label> <label class="tabbar__item"> <input type="radio" name="tabs"> <button class="tabbar__button"> <i class="tabbar__icon ion-ios-star"> </i> </button> </label> <label class="tabbar__item"> <input type="radio" name="tabs"> <button class="tabbar__button"> <i class="tabbar__icon ion-ios-calendar"> </i> </button> </label> </div> </center> </body> </html> Output: Reference: https://onsen.io/v2/api/css.html#tabbar-category Comment More infoAdvertise with us Next Article Onsen UI CSS Component Basic Tabbar G gopaldhangar Follow Improve Article Tags : Web Technologies CSS Onsen-UI Onsen-UI CSS-Components Similar Reads Onsen UI Tabbar 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.Tabbar is used to create the Tabs using Onsen UI classes. In this article, we will discuss how to create Tabbar component 4 min read Onsen UI CSS Component Top 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 Top Tabbar is used to create the Tabbar 2 min read Onsen UI CSS Component Icon Tabbar 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 Tabbar is a CSS component that can be used to build a navigation bar that will have 3 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 Onsen UI CSS Component Bordered Top 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 Bordered Top Tabbar is used to create th 2 min read Like