Onsen UI CSS Component List Item with Chevron Last Updated : 18 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. Onsen UI CSS Component List Item with Chevron is used to create the list items with the chevron using the list-item--chevron class. Onsen UI CSS Component List Item with Chevron Class: list-item--chevron: This class is used to create the list item with the chevron icon. Syntax: <ul class="list"> <li class="list-item list-item--chevron"> <div class="list-item__center"> .... </div> </li> ... </ul> Example 1: The following example demonstrates the Onsen UI CSS Component List Item with Chevron. 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 List Item with Chevron </strong> <ul class="list"> <li class="list-item list-item--chevron"> <div class="list-item__center"> GeeksforGeeks </div> </li> </ul> </center> </body> </html> Output: Example 2: The following example demonstrates the Onsen UI CSS Component List Item with Chevron. 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 List Item with Chevron </strong> <ul class="list"> <li class="list-item list-item--chevron"> <div class="list-item__center"> <div class="list-item__title"> GFG </div> <div class="list-item__subtitle"> GeeksforGeeks </div> </div> </li> <li class="list-item list-item--chevron"> <div class="list-item__center"> GeeksforGeeks </div> </li> <li class="list-item list-item--chevron"> <div class="list-item__center"> GFG </div> <div class="list-item__right list-item--chevron__right"> <div class="list-item__label"> Visit </div> </div> </li> </ul> </center> </body> </html> Output: Reference: https://onsen.io/v2/api/css.html#list-category Comment More infoAdvertise with us Next Article Onsen UI CSS Component List Item with Chevron H harendra4373 Follow Improve Article Tags : Web Technologies CSS Onsen-UI Onsen-UI CSS-Components Similar Reads Onsen UI CSS Component Nodivider List Item with Chevron 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 Nodivider List Item with Chevron is used to create the list items with the chevron icon without th 2 min read Onsen UI CSS Component List Item with Icon 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 List Item with Icon is used to add the icon along with the list item using the list-item__icon cla 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 List Item with Subtitle 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 List Item with Subtitle is used to create the subtitle of the list item using the list-item__subti 2 min read Onsen UI CSS Component List item without divider 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 List item without divider is used to create the list items without the divider between them using 2 min read Like