CSS 設定placeholder文字樣式

admin發表於2018-12-05

本文分享一段程式碼例項,它實現了設定placeholder文字樣式的功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#ant{
  font-size: 1.2em;
  width: 180px;
  height: 30px;
}
#ant::-webkit-input-placeholder{
  color:blue;
}
#ant::-moz-placeholder{ 
  color:blue;
}
#ant:-ms-input-placeholder{ 
  color:blue;
}
</style>    
<script>

</script>
</head>
<body>
  <input id="ant" type="text" placeholder="螞蟻部落" />
</body>
</html>

程式碼執行效果截圖如下:

a:3:{s:3:\"pic\";s:43:\"portal/201812/05/115628qdpx72lswlkv0awh.png\";s:5:\"thumb\";s:0:\"\";s:6:\"remote\";N;}

成功將placeholder屬性值字型顏色設定為藍色。

相關文章