設定placeholder顏色程式碼例項

antzone發表於2017-04-04

關於placeholder屬性的具體用法可以參閱input placeholder一章節。

下面介紹一下如何設定placeholder的字型顏色,程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
/* WebKit browsers */
::-webkit-input-placeholder { 
  color:green;
}
/* Mozilla Firefox 4 to 18 */
:-moz-placeholder { 
  color:green;
}
/* Mozilla Firefox 19+ */
::-moz-placeholder { 
  color:green;
}
/* Internet Explorer 10+ */
:-ms-input-placeholder { 
  color:green;
}
</style>
</head>
<body>
<input type="text" placeholder="螞蟻部落"/>
</body>
</html>


相關文章