Segeo UI是瀏覽器內置的字體系列。我在react項目中使用了字體系列文件。但問題是,它在Windows上運行得非常好。然而,當我在Mac上打開它時,這個字體系列并不適用。你能告訴我是什么問題以及如何解決它嗎?
為什么我應用了重要的信息技術,而沒有應用內置字體系列 App.scss:
body {
font-family: "Segoe UI" !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@font-face {
font-family: "Segoe UI" !important;
// src: url("./assets/fonts/SegoeUI.eot");
src: url("./assets/fonts/SegoeUI.eot?#iefix") format("embedded-opentype"),
url("./assets/fonts/SegoeUI.woff2") format("woff2"),
url("./assets/fonts/SegoeUI.woff") format("woff"),
url("./assets/fonts/SEGOEUI.TTF") format("TTF");
// url("./assets/fonts/SegoeUI.svg#SegoeUI") format("svg");
font-weight: normal !important;
font-style: normal !important;
font-display: swap !important;
}