VOOZH about

URL: https://www.geeksforgeeks.org/css/bulma-multiple-select/

⇱ Bulma Multiple select - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Bulma Multiple select

Last Updated : 23 Jul, 2025

Bulma is a free, open-source CSS framework based on flexbox. It is component-rich, compatible, and well documented. It is highly responsive in nature. It uses classes to implement its design.

Bulma multiple select is used to create a style of multiple select dropdown items. The multiple select items are created by using is-multiple modifiers by using the HTML <select> multiple attributes.

Multiple select classes:

  • is-multiple: It is used to create multiple select items menu from the dropdown list.

Syntax:

<div class="select is-multiple">
 <select multiple size="">
 <option value=""> ... </option>
 </select>
</div>

Example: 

Output:

👁 Bulma Multiple select

Reference: https://bulma.io/documentation/form/select/#multiple-select

Comment
Article Tags: