HTML5 and CSS3 All-in-One For Dummies
Book image
Explore Book Buy On Amazon

The drop-down list is a favorite selection tool of HTML5 and CSS3 web developers. The drop-down list has some very useful elements that make it a huge web developing crowd pleaser:

  • It saves screen space. Only the current selection is showing. When the user clicks the list, a series of choices drop down and then disappear again after the selection is made.

  • It limits input. The only things the user can choose are things you've put in the list. This makes it much easier to handle the potential inputs because you don't have to worry about typing errors.

  • The value can be different from what the user sees. This seems like an odd advantage, but it does turn out to be very useful sometimes.

    image0.jpg

The code for this simple drop-down list follows:

<!DOCTYPE html>
<html lang = "en-US">
 <head>
 <meta charset = "UTF-8">
 <title>basicSelect.html</title>
 </head>
 <body>
 <form action = ">
  <p>
  <label>What is your favorite color?</label>
  <select id = "selColor">
   <option value = "#ff0000">Red</option>
   <option value = "#00ff00">Green</option>
   <option value = "#0000ff">Blue</option>
   <option value = "#00ffff">Cyan</option>
   <option value = "#ff00ff">Magenta</option>
   <option value = "#ffff00">Yellow</option>
   <option value = "#000000">Black</option>
   <option value = "#ffffff">White</option>
  </select>
  </p>
 </form>
 </body>
</html>

The object is a bit different from some of the other input elements you're used to, such as

  • It's surrounded by apair. These tags indicate the entire list.

  • Theobject has anattribute. Although the object has many other tags inside, typically only the object itself has an attribute.

  • It contains a series ofpairs. Each individual selection is housed in an set.

  • Eachtag has a value associated with it. The value is used by code. The value isn't necessarily what the user sees.

  • The content betweenis visible to the user. The content is what the user actually sees.

Select boxes don't require the drop-down behavior. If you want, you can specify the number of rows to display with the attribute. In this case, the number of rows you specify will always be visible on the screen.

About This Article

This article is from the book:

About the book author:

Andy Harris taught himself programming because it was fun. Today he teaches computer science, game development, and web programming at the university level; is a technology consultant for the state of Indiana; has helped people with disabilities to form their own web development companies; and works with families who wish to teach computing at home.

This article can be found in the category: