为什么我的那个图标弄不出来?还是一个H?
为什么我的那个图标弄不出来?还是一个H?
为什么我的那个图标弄不出来?还是一个H?
2016-11-19
其实图标是个字体文件,你有正确引进字体了吗?
@font-face{ font-family: "Raphaelicons"; src:url('fonts/raphaelicons-webfont.eot') format('eot'), url('fonts/raphaelicons-webfont.svg') format('svg'), url('fonts/raphaelicons-webfont.ttf') format('ttf'), url('fonts/raphaelicons-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } /*引入字体http://www.w3cplus.com/content/css3-font-face 字体转换https://www.fontsquirrel.com/tools/webfont-generator*/
然后应用在属性选择器上
[data-icon]:after {font-family: "Raphaelicons";}
举报