Horje

How to add A drop-down list with three visible options - HTML size Attribute

Select Example. The size attribute specifies the number of visible options in a drop-down list.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The select size attribute</h1>

<p>The size attribute specifies the number of visible options in a drop-down list:</p>

<form action="/action_page.php">
  <label for="cars">Choose a car:</label>
  <select id="cars" name="cars" size="3">
    <option value="volvo">Volvo</option>
    <option value="saab">Saab</option>
    <option value="opel">Opel</option>
    <option value="audi">Audi</option>
  </select>
  <br><br>
  <input type="submit" value="Submit">
</form>

</body>
</html>

Output should be:

How to add A drop-down list with three visible options - HTML size Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Attribute
Uploaded by:
Admin