Glubase - share your knowledge


All / Computers / Programming / HTML / XHTML





  • View Command

HTML / XHTML Reference

HTML / XHTML select definition

Browser support
IEFFOpSaf
FullFullFullFull

Type: inline element

Syntax

<select> ... </select>

Description

Creates a drop-down list.

Attributes

Common attributes.

Example

[Try this example yourself]
<select>
  <option value="html">HTML</option>
  <option value="php" selected="selected">PHP</option>
  <option value="javascript">JavaScript</option>
</select>

Output

  • Comments

No comments added.