Modify the default color of the input box placeholder text -webkit-input-placeholder method

Modify the default color of the input box placeholder text -webkit-input-placeholder method

HTML5 adds a native placeholder attribute for input, which is supported by advanced browsers. For example:

<input type="text" placeholder="Search" value=" ">

The default placeholder font color is light gray. If you want to change this default color, the solution is as follows:

XML/HTML CodeCopy content to clipboard
  1. input:-moz-placeholder,
  2. textarea:-moz-placeholder {
  3. color: #999999;
  4. }
  5.   
  6. input:-ms-input-placeholder,
  7. textarea:-ms-input-placeholder {
  8. color: #999999;
  9. }
  10.   
  11. input::-webkit-input-placeholder,
  12. textarea::-webkit-input-placeholder {
  13. color: #999999;
  14. }

The above method of changing the default color of the input box placeholder text - webkit-input-placeholder is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.cnblogs.com/xjuan/p/5436037.html

<<:  A summary of the reasons why Mysql does not use date field index

>>:  Detailed explanation of basic operation commands for Linux network settings

Recommend

Detailed explanation of MySQL cursor concepts and usage

This article uses examples to explain the concept...

Mysql classic high-level/command line operation (quick) (recommended)

Since I need to learn how to build servers and da...

Centos7 mysql database installation and configuration tutorial

1. System environment The system version after yu...

Mysql error: Too many connections solution

MySQL database too many connections This error ob...

Configure nginx to redirect to the system maintenance page

Last weekend, a brother project was preparing to ...

The marquee tag in HTML achieves seamless scrolling marquee effect

The <marquee> tag is a tag that appears in ...

Troubleshooting of master-slave delay issues when upgrading MySQL 5.6 to 5.7

Recently, when upgrading the Zabbix database from...

MySQL InnoDB monitoring (system layer, database layer)

MySQL InnoDB monitoring (system layer, database l...

How to run JavaScript in Jupyter Notebook

Later, I also added how to use Jupyter Notebook i...

Detailed explanation of CSS3 text shadow text-shadow property

Text shadow text-shadow property effects: 1. Lowe...

Detailed explanation of the background-position percentage principle

When I was helping someone adjust the code today,...

Nexus uses API to operate

Nexus provides RestApi, but some APIs still need ...

Summarize the User-Agent of popular browsers

1. Basic knowledge: Http Header User-Agent User A...