如何用css3更改占位符的颜色?

这个问题在这里已经有了答案:

  • 使用CSS 31答案更改HTML5输入的占位符颜色

  • 对于Mozilla <19

    <style type="text/css">  
        input:-moz-placeholder {  
          color: green;  
        }  
    </style>  
    

    对于Mozilla 19以后

    <style type="text/css">  
        input::-moz-placeholder {  
          color: green;  
        }  
    </style>  
    

    适用于Google Chrome

    <style type="text/css">  
        input::-webkit-input-placeholder {  
          color: green;  
        }  
    </style>
    

    对于IE 10

    <style type="text/css">  
        input:-ms-input-placeholder {  
          color: green;  
        }  
    </style>
    
    链接地址: http://www.djcxy.com/p/12149.html

    上一篇: how to change place holder color with css3?

    下一篇: Examples of URI, URL and URN