Text input placeholders not displaying in IE and Firefox

后端 未结 4 2110
予麋鹿
予麋鹿 2021-02-07 04:55

My text input placeholders refuse to display in IE and Firefox despite having used the -moz-placeholder attribute. This can be viewed on the contact page here if you are using F

4条回答
  •  旧巷少年郎
    2021-02-07 05:25

    ::-webkit-input-placeholder { /* Chrome, Safari */
       color: #aaa;
       font-size: 18px;
    }
    
    :-moz-placeholder {           /* Firefox 18- */
       color: #aaa;
       font-size: 18px;
    }
    
    ::-moz-placeholder {          /* Firefox 19+ */
      color: #aaa;
      font-size: 18px;
    }
    
    :-ms-input-placeholder {      /* Internet Explorer */
      color: #aaa;
      font-size: 18px;
    }
    

提交回复
热议问题