element table 自带的箭头

elementUI table树默认箭头修改

 

  如何能替换成

效果

  elementUI table树默认箭头修改

 

方法很简单的,不用自己再去画

1  .el-icon-arrow-right {
2       color: #49c0ff;
3     }
4 
5 .el-table .el-table__expand-icon {
6     .el-icon-arrow-right:before {
7       content: '\e791';
8     }
9   }

关键是

 content: '\e791'
这个代表着图标,获取方式也比较容易,那就是F12,获取官网上的图标对应的代码

elementUI table树默认箭头修改

 

 好了,结束了

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-05-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
猜你喜欢
  • 2022-12-23
  • 2021-05-02
  • 2021-09-29
  • 2022-12-23
  • 2021-12-30
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案