css——字型圖示
阿新 • • 發佈:2018-12-10
//匯入字型檔案
@font-face {
font-family: huge;
src: url("../fonts/icomoon.svg") format('svg'),
url("../fonts/icomoon.eot") format('embedded-opentype'),
url("../fonts/icomoon.ttf") format('truetype'),
url("../fonts/icomoon.woff") format('woff');
}
//屬性選擇器統一設定屬性
[class^='icon'] {
font-family: huge;
font-style: normal;
}
//單獨匯入字型編碼檔案
.icon-pzs::before {
content: '\e948';
font-size: 1.2em;
}
.icon-phone::before {
content: '\e942';
font-size: 1.2em;
}
.icon-mailbox::before {
content: '\e945';
font-size: 1.2em;
}