設定placeholder字型顏色程式碼

admin發表於2017-11-27

分享一段程式碼例項,它實現了修改placeholder規定文字顏色的效果。

關於placeholder屬性可以參閱input標籤 placeholder屬性用法介紹一章節。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
input::-webkit-input-placeholder {
  color:green;
}
input:-moz-placeholder {
  color:green;
}
input::-moz-placeholder{
  color:green;
}
input:-ms-input-placeholder {
  color:green;
}
</style>
</head>
<body>
<input type="text" placeholder="www.softwhy.com">
</body>
</html>

相關文章