Open In App

Onsen UI CSS Component Basic Segment

Improve
Improve
Like Article
Like
Save
Share
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.

The segment is used to create a group of related content. Onsen UI CSS Component Basic Segment is used to create the basic segment with related content using the Onsen UI Segment classes.

Onsen UI CSS Component Basic Segment Classes:

  • segment: This class is used to create the segment.
  • segment__item: This class is used to create the segment item.
  • segment__input: This class is used to create the segment input.
  • segment__button: This class is used to create the segment buttons.

Syntax:

<div class="segment">
  <div class="segment__item">
    <input type="..." 
           class="segment__input">
    <div class="segment__button">
        ....
    </div>
  </div>
  ...
</div>

Example 1: The following example demonstrates the Onsen UI CSS Component Basic Segment.

HTML




<!DOCTYPE html>
<html>
  
<head>
    <!-- CDN links of Onsen UI library -->
    <link rel="stylesheet" href=
    <link rel="stylesheet" href=
    <script src=
    </script>
</head>
  
<body>
    <center>
        <h2 style="color: green;">
            GeeksforGeeks
        </h2>
        <strong>
            Onsen UI CSS Component Basic Segment
        </strong> <br> <br>
  
        <div class="segment" style="width: 120px;">
            <div class="segment__item">
                <input type="checkbox" 
                       class="segment__input" 
                       checked>
                <div class="segment__button">
                    Java
                </div>
            </div>
            <div class="segment__item">
                <input type="checkbox" 
                       class="segment__input">
                <div class="segment__button">
                    Python
                </div>
            </div>
        </div>
    </center>
</body>
  
</html>


Output:

 

Example 2: The following example demonstrates the Onsen UI CSS Component Basic Segment.

HTML




<!DOCTYPE html>
<html>
  
<head>
    <!-- CDN links of Onsen UI library -->
    <link rel="stylesheet" href=
    <link rel="stylesheet" href=
    <script src=
    </script>
</head>
  
<body>
    <center>
        <h2 style="color: green;">
            GeeksforGeeks
        </h2>
        <strong>
            Onsen UI CSS Component Basic Segment
        </strong> <br> <br>
  
        <div class="button-bar" style="width: 400px;">
            <div class="button-bar__item">
                <button class="button-bar__button">
                   Java
                </button>
            </div>
            <div class="button-bar__item">
                <button class="button-bar__button">
                    Python
                </button>
            </div>
            <div class="button-bar__item">
                <button class="button-bar__button">
                    C++
                </button>
            </div>
        </div
    </center>
</body>
  
</html>


Output:

 

Reference: https://onsen.io/v2/api/css.html#segment-category



Last Updated : 22 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads