Tailwind CSS Select - Versoly UI

Added in 1.0

Example

<select class="form-select">
    <option value="corp">Corporate event</option>
    <option value="wedding">Wedding</option>
    <option value="birthday">Birthday</option>
    <option value="other">Other</option>
  </select>

Sizing

<div class="col mb-4 md:w-7/12">
  <label>Large
  <select class="form-select form-select-lg">
    <option value="corp">Corporate event</option>
    <option value="wedding">Wedding</option>
    <option value="birthday">Birthday</option>
    <option value="other">Other</option>
  </select>
</div>
<div class="col mb-4 md:w-7/12">
  <label>Small</label>
  <select class="form-select form-select-sm">
    <option value="corp">Corporate event</option>
    <option value="wedding">Wedding</option>
    <option value="birthday">Birthday</option>
    <option value="other">Other</option>
  </select>
</div>