色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

為什么Segeo UI字體系列在Mac上不工作,而在windows上工作正常

傅智翔2年前8瀏覽0評論

enter image description here

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;
}