In HTML, you can create a drop-down box through the select element, with syntax such as "", where The
The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer. The
select element creates a single-select or multiple-select menu.
The
Code sample:
<!DOCTYPE html> <html> <body> <select> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</option> <option value="audi">Audi</option> </select> </body> </html>
Effect:
For more detailed HTML/css knowledge, please visit HTML video tutorial column!
The above is the detailed content of How to make html drop-down box. For more information, please follow other related articles on the PHP Chinese website!