Open In App

Semantic-UI Form Radio Checkbox Content

Semantic UI is the open-source framework that used CSS and jQuery to make our websites look beautiful and responsive. It has predefined classes like bootstrap for use to make our website more interactive. It has some pre-built semantic components and we can use these components to create a responsive website.

The form is a container that has different types of input elements such as text fields, submit buttons, radio buttons, checkboxes, etc.



Semantic-UI Form is used to create the beautiful form using form classes. Form Radio Checkbox Content is used to create the radio checkboxes to select the option from the set of options. We will use radio class to create the radio checkbox. In this article, we will discuss Form Radio Checkbox Content in Semantic-UI.

Semantic-UI Form Radio Checkbox Content Class:



Syntax: 

<div class="ui radio checkbox">
   <input type="radio" class="hidden">
</div>

Example 1: The following code demonstrates the Semantic-UI Form Radio Checkbox Content in the horizontal direction.




<!DOCTYPE html>
<html>
  
<head>
    <title>Semantic-UI Form Radio Checkbox Content</title>
    <link href=
          rel="stylesheet" />
    <script src=
    </script>
    <script src=
    </script>
</head>
  
<body>
    <h2 style="color: green">
        GeeksforGeeks
    </h2>
  
    <h3>Semantic-UI Form Radio Checkbox Content</h3>
  
    <div class="ui form">
        <div class="inline fields">
            <label for="radio-box">
                Select your option:
            </label>
  
            <div class="field">
                <div class="ui radio checkbox">
                    <input type="radio"
                           name="radio-box"
                           checked="" 
                           tabindex="0" 
                        class="hidden">
                    <label>Radio 1</label>
                </div>
            </div>
  
            <div class="field">
                <div class="ui radio checkbox">
                    <input type="radio"
                           name="radio-box"
                           tabindex="0" 
                           class="hidden">
                    <label>Radio 2</label>
                </div>
            </div>
  
            <div class="field">
                <div class="ui radio checkbox">
                    <input type="radio" 
                           name="radio-box"
                           tabindex="0"
                           class="hidden">
                    <label>Radio 3</label>
                </div>
            </div>
        </div>
    </div>
  
    <script>
        $('.ui.radio.checkbox').checkbox();
    </script>
</body>
  
</html>

Output:

Semantic-UI Form Radio Checkbox Content

Example 2: The following code demonstrates the Semantic-UI Form Radio Checkbox Content in the vertical direction.




<!DOCTYPE html>
<html>
  
<head>
  <title>Semantic-UI Form Radio Checkbox Content</title>
  <link href=
        rel="stylesheet"/>
  
  <script src=
  </script>
  
  <script src=
  </script>
  
</head>
  
<body>
  
  <h2 style="color: green">
    GeeksforGeeks
  </h2>
  
  <h3>
    Semantic-UI Form Radio Checkbox Content
  </h3>
  
  <div class="ui form">
    <div class="grouped fields">
  
      <label for="radio-box">
        Select your option:
      </label>
  
      <div class="field">
        <div class="ui radio checkbox">
          <input type="radio" 
                 name="radio-box" 
                 checked=""
                 tabindex="0" 
                 class="hidden">
          <label>
            Radio 1
          </label>
        </div>
      </div>
  
      <div class="field">
        <div class="ui radio checkbox">
          <input type="radio" 
                 name="radio-box" 
                 tabindex="0" 
                 class="hidden">
          <label>
            Radio 2
          </label>
        </div>
      </div>
  
      <div class="field">
        <div class="ui radio checkbox">
          <input type="radio"
                 name="radio-box" 
                 tabindex="0"
                 class="hidden">
          <label>
            Radio 3
          </label>
        </div>
      </div>
  
    </div>
  </div>
  
  <script>
    $('.ui.radio.checkbox').checkbox();
  </script>
  
</body>
  
</html>

Output:

Semantic-UI Form Radio Checkbox Content

Reference: https://semantic-ui.com/collections/form.html#radio-checkbox


Article Tags :