自訂字體為您的網頁設計增添一絲個性和獨特性。然而,確保所有用戶(無論其設備如何)都可以存取這些字體可能是一個挑戰。一個有效的解決方案是使用 CSS 導入字體。
使用者在使用 CSS 匯入字體時遇到困難。儘管遵循傳統方法,該字體仍然無法存取。以下是他們的程式碼片段:
<code class="css">@font-face { font-family: EntezareZohoor2; src: url(Entezar2.ttf) format("truetype"); } .EntezarFont { font-family: EntezareZohoor2, B Nazanin, Tahoma !important; }</code>
要成功在CSS 中導入字體,請遵循以下準則:
<code class="css">@font-face { font-family: 'EntezareZohoor2'; src: url('fonts/EntezareZohoor2.eot'), url('fonts/EntezareZohoor2.ttf') format('truetype'), url('fonts/EntezareZohoor2.svg') format('svg'); font-weight: normal; font-style: normal; } #newfont { font-family: 'EntezareZohoor2'; }</code>
關鍵修改:
透過實作這些調整,您可以在 CSS 設計中有效地利用自訂字體,確保您的字體對於所有使用者來說都易於存取且具有視覺吸引力。
以上是為什麼我導入的字體在 CSS 中不起作用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!