The LB Redbridge design system.
-
- An introduction
- A starter template
- Accordion
- Back link
- Breadcrumbs
- Button
- Character count
- Checkboxes
- Confirmation
- Date input
- Details
- Declarations
- Error message and summary
- File upload
- Footer
- Header
- Hyperlink
- Inset text
- Layouts
- Mapping
- Phase banner
- Phone numbers
- Print button
- Radio buttons
- Select
- Spacing
- Table ( responsive )
- Text input
- Textarea
- Typography
- Warning text
- Well
Select
Select options from a menu based dropdown
GDS guidelines on using this component (opens in a new window)
HTML Code ↕
<div class="govuk-form-group">
<label class="govuk-label" for="sort">
Sort by [label]
</label>
<select class="govuk-select" id="sort" name="sort">
<option value="relevance">Relevance</option>
<option value="reviews" selected>Reviews</option>
<option value="views">Most views</option>
<option value="comments">Most comments</option>
</select>
</div>