屬性 | 屬性值 | 描述 |
font-family | Helvetica, Arial, 'LiHei Pro', '微軟正黑體', '新細明體', sans-serif | 設定字型優先順序 |
font-size | 17px、17em、17% | 設定字體大小 |
font-style | normal、italic | 設定斜體 |
font-weight | normal、bold | 設定粗體 |
font | 以上全部 | 一次設定所有屬性 |
/** * 為避免使用者的電腦上沒有您指定的字型,您可以將字型一併上傳到伺服器,再使用以下程式碼設定字型。 * 除此之外,您也可以參考 Google Fonts 或 Adobe Typekit,它們都是雲端字型服務提供者。 */ @font-face { font-family: MyFoobarFont; src: url(foobar.woff); } p { font-family: MyFoobarFont; }