element 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,獲取官網上的圖標對應的代碼
好了,結束了