---
title: "Select element has no accessible name (a11y/select-name)"
description: "a11y/select-name: Without a label, screen readers announce only the current option, so users cannot tell what the dropdown is for."
canonical: https://void-design.vercel.app/rules/a11y/select-name
lastModified: 2026-09-16
---

# Select element has no accessible name

`a11y/select-name` · severity **error** · category Accessibility · detected by `void a11y` and `void audit`

## Why it matters

Without a label, screen readers announce only the current option, so users cannot tell what the dropdown is for.

## How to fix it

Associate a visible <label for> with the select, or wrap the select in its label.

## Example

```
<label for="country">Country</label><select id="country">…</select>
```

## References

- https://dequeuniversity.com/rules/axe/4.13/select-name

## More accessibility rules

`void a11y` reports 48 rules in this category. WCAG 2.2 AA through axe-core, plus checks axe can't do alone: visible keyboard focus, 24/44px target size on mobile, 320px reflow and disabled zoom.

- `image-alt` Image has no text alternative — [a11y/image-alt](https://void-design.vercel.app/rules/a11y/image-alt)
- `button-name` Button has no accessible name — [a11y/button-name](https://void-design.vercel.app/rules/a11y/button-name)
- `link-name` Link has no accessible name — [a11y/link-name](https://void-design.vercel.app/rules/a11y/link-name)
- `label` Form field has no label — [a11y/label](https://void-design.vercel.app/rules/a11y/label)
- `input-button-name` Input button has no accessible name — [a11y/input-button-name](https://void-design.vercel.app/rules/a11y/input-button-name)
- `input-image-alt` Image button has no alt text — [a11y/input-image-alt](https://void-design.vercel.app/rules/a11y/input-image-alt)
- `html-has-lang` <html> has no lang attribute — [a11y/html-has-lang](https://void-design.vercel.app/rules/a11y/html-has-lang)
- `html-lang-valid` <html lang> is not a valid language tag — [a11y/html-lang-valid](https://void-design.vercel.app/rules/a11y/html-lang-valid)

Detected by `void a11y` and `void audit`. Explain it in a terminal: `void rules a11y/select-name`
