HTML <select> with size Attribute

You are Here:

HTML <select> with size Attribute

The size attribute specifies the number of visible options in a drop-down list.

Note: If the value of the size attribute is greater than the number of options available, then the browser will add a scroll bar to indicate that there are more options to view.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <select size="3"> <option>Apple</option> <option>Banana</option> <option>Cherry</option> <option>Dates</option> </select> </body> </html>

Attribute Value

ValueExplanation
numberSpecifies the number of visible options in a drop down list.
The default value is 1.
If the multiple attribute is present, the default value is 4.

Reminder

Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in HTML.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author