input placeholder 颜色修改

Posted loewe0202

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input placeholder 颜色修改相关的知识,希望对你有一定的参考价值。

方法一:


::-webkit-input-placeholder { /* WebKit browsers */ color: #fff; } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #fff; opacity: 1; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #fff; opacity: 1; } :-ms-input-placeholder { /* Internet Explorer 10+ */ color: #fff; }
  /* opacity: 1;是为了修改FF的默认透明度导致颜色偏差; */



方法二:
<input type="text" value="placeholder text" onfocus="if(!this.haswriting){this.style.color=‘#000‘; this.value=‘‘;}" onblur="if(!this.value){this.style.color=‘#f00‘; this.value=‘placeholder text‘; this.haswriting=false;}else{this.haswriting=true};" style="color: #f00;"/>

  

  

以上是关于input placeholder 颜色修改的主要内容,如果未能解决你的问题,请参考以下文章

input 修改placeholder颜色

修改input输入框placeholder文字默认颜色

input placeholder 文字颜色修改

修改placeholder颜色

input修改placeholder文字颜色

input的placeholder文字颜色修改