BetaCodophile is currently in active development. Features may change rapidly! 🚀
Back to Tailwind

Checkboxes

Accessible checkbox lists with detailed descriptions and layouts.

Layout & Style

State

Notifications
Get notified when someones posts a comment on a posting.
Get notified when a candidate applies for a job.
Get notified when a candidate accepts or rejects an offer.
HTML Output
<fieldset>
  <legend class="sr-only">Notifications</legend>
  <div class="space-y-5">
    <div class="relative flex items-start">
      
      <div class="flex h-6 items-center">
        <input 
          id="comments" 
          aria-describedby="comments-description" 
          name="comments" 
          type="checkbox" 
          checked
          class="h-4 w-4 border-gray-300 text-indigo-600 focus:ring-indigo-600 rounded"
          
        >
      </div>
      
      <div class="ml-3 text-sm leading-6">
        <label for="comments" class="font-medium text-gray-900">Comments</label>
        <p id="comments-description" class="text-gray-500">Get notified when someones posts a comment on a posting.</p>
        
      </div>
    </div>
    <!-- ... other items -->
  </div>
</fieldset>