How to make a placeholder for a 'select' box
By Tan Lee Published on Mar 02, 2024 379
This post shows you How to make a placeholder for a 'select' box.
For example:
<select> <option value="1">C#</option> <option value="2">C++</option> </select>
If you want to add a placeholder to select for example: '--- Select ---'
You can modify your html as shown below.
<select> <option value="" disabled selected>--- Select ---</option> <option value="1">C#</option> <option value="2">C++</option> </select>
Categories
Popular Posts
11 Things You Didn't Know About Cloudflare
Dec 19, 2024
RuangAdmin Template
Nov 13, 2024
AdminKit Bootstrap 5 HTML5 UI Kits Template
Nov 17, 2024
Simple Responsive Login Page
Nov 11, 2024