天天看點

html 改變placeholder顔色

代碼如下:

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
        input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {/* WebKit browsers */
            color:    red;
        }
        input:-moz-placeholder, textarea:-moz-placeholder {/* Mozilla Firefox 4 to 18 */
            color:    red;
        }
        input::-moz-placeholder, textarea::-moz-placeholder {/* Mozilla Firefox 19+ */
            color:    red;
        }
        input:-ms-input-placeholder, textarea:-ms-input-placeholder {/* Internet Explorer 10+ */
            color:    red;
        }
        input,textarea{
            color: green;
        }
![這裡寫圖檔描述](http://img.blog.csdn.net/20161015131517168)    </style>
</head>
<body>
<input type="text" placeholder="hello world!">
<textarea placeholder="hhhhh"></textarea>
</body>
</html>
           

效果圖:

html 改變placeholder顔色