项目中需要自定义icon,在项目中通用
- html使用
<i class='icon-save'></i>
- css样式
.icon-save { /*使用自己的图片来替换*/ background: url('图片地址') center no-repeat; background-size: contain; } .icon-save::before { /*before属性中的content文本是用来占位的,必须有*/ content: 'save'; font-size: 12px; /*可以设置字体大小来确定图标大小*/ visibility: hidden; }