修改HTML5 input中placeholder属性的默认文字样式

 

 

/* WebKit browsers */
input::-webkit-input-placeholder{
    font-size: 12px;
    color: #929292;
}
/* Mozilla Firefox 4 to 18 */
input::-moz-placeholder{
    font-size: 12px;
    color: #929292;
}
/* Mozilla Firefox 19+ */
input:-moz-placeholder{
    font-size: 12px;
    color: #929292;
}
/* Internet Explorer 10+ */
input:-ms-input-placeholder{
    font-size: 12px;
    color: #929292;
}

如果是移动端,只用::-webkit-input-placeholder即可

posted @ 2018-07-19 21:52  SofiaTJU  阅读(354)  评论(0编辑  收藏  举报