Problems with creating placeholders for HTML selection boxes

Problems with creating placeholders for HTML selection boxes

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)

Recommend

innerHTML Application

Blank's blog: http://www.planabc.net/ The use...

Discussion on the browsing design method of web page content

<br />For an article on a content page, if t...

Basic statements of MySQL data definition language DDL

MySQL DDL statements What is DDL, DML. DDL is dat...

MySql development of automatic synchronization table structure

Development Pain Points During the development pr...

Implementation of importing and exporting docker images

Docker usage of gitlab gitlab docker Startup Comm...

MySQL data type details

Table of contents 1. Numeric Type 1.1 Classificat...

Install redis and MySQL on CentOS

1|0MySQL (MariaDB) 1|11. Description MariaDB data...

Reasons and solutions for prompting to save action after uploading files in form

The json data must be returned in html format That...

Detailed steps to configure my.ini for mysql5.7 and above

There is no data directory, my-default.ini and my...

Enabling and configuring MySQL slow query log

Introduction MySQL slow query log is an important...

What is the file mysql-bin.000001 in mysql? Can it be deleted?

After installing MySQL using ports, I found that ...

Using better-scroll component in Vue to realize horizontal scrolling function

About Recently, in the process of learning Vue, I...

We're driving IE6 to extinction on our own

In fact, we wonder every day when IE6 will really...

DIV common attributes collection

1. Property List Copy code The code is as follows:...

The difference between char and varchar in MYSQL

CHAR and VARCHAR types are similar, differing pri...