[css]Web Font

1.      適用範圍http://caniuse.com/#search=web font
1-1、IE6+ (EOTTTF)
1-2、FF (WOF)
1-3、CHROME Safari (SVG)
2.      基本語法
@font-face {
        font-family: nani;//宣告字體名稱
        src:url('fonts/ nani.eot) format('embedded-opentype'),
                url('fonts/ nani.woff) format('woff'),
                url('fonts/ nani.ttf) format('truetype'),
                url('fonts/ nani.svg ) format('svg');
        font-weight: normal;
        font-style: normal;
}

.textStyle {
        font-family: "nani";
}

.icon-home:before {
        font-family: 'nani';
        content: "\e600";
}

3.      工具/整合包

這個網誌中的熱門文章

[java]半型轉全型

[java]BIG5 字集判斷

[javascript]當月第一天、當月最後一天