HyperText Markup Language/Tag List/select
Use
editThis builds a List Box. Used for selecting a value from a list. This is to be used in relation with the option tag.
Example
edit<select name="animals">
<option selected value="Bird">Bird</option>
<option value="Reptile">Reptile</option>
<option value="Mammal">Mammal</option>
</select>
Required attributes
editname
editName of the value in the form.
Optional attributes
editclass
editAssociated CSS classes.
dir
editThe direction of the text. You can choose from "ltr" (left to right) or "rtl" (right to left).
disabled
editLocks in the control so the user cannot modify the value in the list box.
id
editA string that is in the webpage.
lang
editThe ISO language code that you want to use for the tag.
multiple
editAllows the value tag to allow multiple selections.
size
editThe size of the list box. It is measured in either rows or as a percentage on the screen.
style
editCSS commands.
tabindex
editThe order of the controls received by the form.
title
editThe title of the tag.
Standard attributes
editMore info
editA link to a page with more info, then the name of the site the info came from (i.e. W3Schools).