Author -  Sai gowtham

How to add a placeholder to select element in html

In this tutorial, we are going to learn about how to add a placeholder text to a <select> element (tag) in html.

The Html form elements like input and textarea we have a placeholder attribute to add the placeholder text.

<input placeholder="Name"/>
<textarea placeholder="comment"></textarea>

Adding placeholder to select element

In select element we don’t have a placeholder attribute but we can add it by using <option> element with disabled, selected and hidden attribute.

Example:

<select>
  <option value="" disabled selected hidden>Choose your framework</option>  <option value="react">React</option>
  <option value="Vue">Vue</option>
  <option value="Angular">Angular</option>
</select>

added placeholder to select html

  1. The disabled attribute makes the option unable to select.
  2. The selected attribute shows the text inside <option> element opening and closing tags.
  3. Whenever a user clicks on a select dropdown the hidden attribute makes this option hidden.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY