I'm using a placeholder in a text input and it works fine. But I also want to use a placeholder for my select box. Of course, I can use the following code: <select> <option value="">Select your option</option> <option value="hurr">Durr</option> </select> But the "Choose Your Option" is black instead of light grey. So my solution would probably be CSS based. jQuery is also good. This will just grey out the options in the dropdown menu (so after clicking the arrow): option:first { color: #999; } The question is: How do people create placeholders in select boxes? But it has been answered, hurray. Using this method causes the selected value to always be greyed out (even after selecting a real option): select { color: #999; } Solution: Non-CSS - no JavaScript/jQuery answer: <select> <option value="" disabled selected>Select your option</option> <option value="hurr">Durr</option> </select> The above is the detailed content about the problem of creating placeholders in html selection boxes. For more information about html selection box placeholders, please pay attention to other related articles on 123WORDPRESS.COM! |
<<: HTML CSS3 does not stretch the image display effect
>>: Display special symbols in HTML (with special character correspondence table)
Blank's blog: http://www.planabc.net/ The use...
<br />For an article on a content page, if t...
MySQL DDL statements What is DDL, DML. DDL is dat...
Development Pain Points During the development pr...
Docker usage of gitlab gitlab docker Startup Comm...
Table of contents 1. Numeric Type 1.1 Classificat...
1|0MySQL (MariaDB) 1|11. Description MariaDB data...
The json data must be returned in html format That...
There is no data directory, my-default.ini and my...
Introduction MySQL slow query log is an important...
After installing MySQL using ports, I found that ...
About Recently, in the process of learning Vue, I...
In fact, we wonder every day when IE6 will really...
1. Property List Copy code The code is as follows:...
CHAR and VARCHAR types are similar, differing pri...