Answers for "nested select option in html"

0

nested select option in html

<select>
  <optgroup label="1">
     <option>Nested Option 1</option>
     <option>Nested Option 2</option>
  </optgroup>
  
  <optgroup label="2">
     <option>Nested Option 1</option>
     <option>Nested Option 2</option>
  </optgroup>
</select>
Posted by: Guest on February-11-2022

Browse Popular Code Answers by Language