css修改input中placeholder 的字型顏色

ITzhongzi發表於2017-06-15



示例 :input ::-webkit-input-placeholder { /* WebKit browsers */ 
color: #999; 

選中 input標籤之後,在後面 (不加空格)直接加上   ::-webkit-input-placeholder  即可選中  input標籤的  placeholder  屬性,接下來修改 屬性和顏色  等就可以了 


----------------------------一下是相容各個瀏覽器的寫法-----------------------------------------------------------------------------------------------------


::-webkit-input-placeholder { /* WebKit browsers */ 
color: #999; 

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ 
color: #999; 

::-moz-placeholder { /* Mozilla Firefox 19+ */ 
color: #999; 

:-ms-input-placeholder { /* Internet Explorer 10+ */ 
color: #999; 

相關文章