欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在css样式中引入字体图标

程序员文章站 2022-05-11 09:14:15
...
  1. 把字体图标样式引入,再引入content字体编码
  2. 按需加入/deep
 /deep/.el-form-item__error:before {
    content: "\e60d" !important;    //这个content对应字体图标文件的
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
相关标签: 前端