1. 程式人生 > >不同瀏覽器css引入外部字型的方式

不同瀏覽器css引入外部字型的方式

/**
 * 字型字尾和瀏覽器有關,如下所示
 * .TTF或.OTF,適用於Firefox 3.5、Safari、Opera 
 * .EOT,適用於Internet Explorer 4.0+ 
 * .SVG,適用於Chrome、IPhone 
 * 比如:
 */
@font-face {
    font-family: 'MyFont';/*定義字型名稱*/
    src: url('fonts/hanshand-webfont.eot');
    src: url('fonts/hanshand-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/hanshand-webfont.woff') format('woff'),
         url('fonts/hanshand-webfont.ttf') format('truetype'),
         url('fonts/hanshand-webfont.svg#webfont34M5alKg') format('svg')
; font-weight: normal; font-style: normal; } /** * 使用字型 */ body { font-family: 'MyFont', serif; }