change placeholder text color of textarea

前端 未结 4 2047
眼角桃花
眼角桃花 2020-12-15 17:30

I know there is this post on changing the placeholder text. I\'ve tried implementing in on my textarea tags

textarea::-webkit-input-placeholder {
color: #fff         


        
4条回答
  •  执笔经年
    2020-12-15 18:00

    ::-webkit-input-placeholder {
           color: orange;
        }
        :-moz-placeholder { /* Upto Firefox 18, Deprecated in Firefox 19  */
           color: orange;  
        }
        ::-moz-placeholder {  /* Firefox 19+ */
           color: orange;  
        }
        :-ms-input-placeholder {  
           color: orange;  
        }
    

提交回复
热议问题