Expand description
Attribute names for option (<option>) elements.
§Purpose
The <option> element defines an option in a <select>, <optgroup>,
or <datalist> element, representing a choice available to the user.
§Common Attributes
value: Value submitted when option is selectedselected: Pre-selects the optiondisabled: Disables the optionlabel: Text label (defaults to element content)
§Example
<select name="size">
<option value="">Choose size</option>
<option value="s">Small</option>
<option value="m" selected>Medium</option>
<option value="l">Large</option>
<option value="xl" disabled>Extra Large (Out of stock)</option>
</select>