element-ui中修改placeholder的字体

Posted smart-girl

tags:

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

//同理一些css也是
  .el-input__inner {
    &::placeholder {
       font-size: vw(14);
    }

    &::-webkit-input-placeholder {
        /* WebKit browsers 适配谷歌 */
        font-size: vw(14);
    }

    &:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 适配火狐 */
       font-size: vw(14);
    }

    &::-moz-placeholder {
        /* Mozilla Firefox 19+ 适配火狐 */
       font-size: vw(14);
    }

    &:-ms-input-placeholder {
        /* Internet Explorer 10+  适配ie*/
        font-size: vw(14);
    }
}

以上是关于element-ui中修改placeholder的字体的主要内容,如果未能解决你的问题,请参考以下文章