為Font Awesome 5 偽元素選擇正確的字體系列
在CSS 中使用Font Awesome 5 圖示作為偽元素時,指定適當的字體系列至關重要。可用的選項有:Font Awesome 5 Free、Font Awesome 5 Solid、Font Awesome 5 Brands 和 Font Awesome 5 Regular。
案例1:品牌圖示
如果您使用的圖示屬於Brands 風格(例如Twitter),請使用「Font Awesome 5 Brands」 font-family.
h1:before { font-family: "Font Awesome 5 Brands"; }
案例2:實心圖標(解決問題)
對於實心圖標,不要使用「 Font Awesome 5 Solid」字體系列。相反,請使用“Font Awesome 5 Free”,因為 Solid 和 Regular 圖示共用相同的字體系列。
h1:before { font-family: "Font Awesome 5 Free"; }
一般規則:使用多個字體系列
為了確保相容性,請將所有必需的字體系列合併到字體系列屬性中。瀏覽器會自動選擇正確的圖示。
h1:before { font-family: "Font Awesome 5 Brands","Font Awesome 5 Free"; }
注意:
以上是如何為 Font Awesome 5 Pseudo Elements 選擇正確的字體系列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!