Select Menus and Textareas

Keep labels and instructions visible while people choose or write.

Choose from known options

Describe what happened and what you expected. Use 20–500 characters.

Structure before styling

Important HTML

Both select and textarea need a label; keep help text visible outside the control.

<label for="topic">Support topic</label>
<select id="topic" name="topic" required>
  <option value="">Choose a topic</option>
  …
</select>
<label for="message">Your message</label>
<textarea id="message" name="message" rows="6" required></textarea>