修改 input框、textarea框的placeholder样式

    /* 设置input框提示内容的样式 */
    input::-webkit-input-placeholder {
      font-size: 14px;
      color: #ccc;
      font-weight: 400;
      font-family: sans-serif;
    } /*webkit 内核浏览器*/
    input::-moz-placeholder {
      font-size: 14px;
      color: #ccc;
      font-weight: 400;
      font-family: sans-serif;
    } /*Mozilla Firefox 19+*/
    input:-moz-placeholder {
      font-size: 14px;
      color: #ccc;
      font-weight: 400;
      font-family: sans-serif;
    } /*Mozilla Firefox 4 to 18*/
    input:-ms-input-placeholder {
      font-size: 14px;
      color: #ccc;
      font-weight: 400;
      font-family: sans-serif;
    }

    /* 设置textarea框提示内容的样式 */
    textarea::-webkit-input-placeholder {
      font-size: 14px;
      color: #ccc;
      font-weight: 400;
      font-family: sans-serif;
    } /*webkit 内核浏览器*/
    textarea::-moz-placeholder {
      font-size: 14px;
      color: #ccc;
      font-weight: 400;
      font-family: sans-serif;
    } /*Mozilla Firefox 19+*/
    textarea:-moz-placeholder {
      font-size: 14px;
      color: #ccc;
      font-weight: 400;
      font-family: sans-serif;
    } /*Mozilla Firefox 4 to 18*/
    textarea:-ms-input-placeholder {
      font-size: 14px;
      color: #ccc;
      font-weight: 400;
      font-family: sans-serif;
    }
  

  

posted @ 2022-07-26 11:48  枫若  阅读(472)  评论(0编辑  收藏  举报