我似乎無法找到有關在角材料中使用不同字體的任何文檔。這是否可以通過框架?角材料字體家庭開關
1
A
回答
3
角度材質是材質設計的實現,材質設計與Roboto字體緊密相關,正如您所提到的,文檔中沒有關於它的內容,所以我認爲通過框架無法做到這一點。
但是,您可以輕鬆更改CSS文件中的字體系列,這需要在角度材質依賴關係後包含在您的構建中。這裏有一個例子:
body {
font-family: "Comic Sans MS";
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
和演示:http://codepen.io/mattdanna/pen/pgwVzX
從這裏借:https://github.com/angular/material/issues/6561#issuecomment-170837189
+0
漫畫無敵......你的怪物! upvoted雖然;) – Keno
2
這是關於這個問題的正式文件,但它並沒有規定如何提供備份家庭類字體無法加載: https://material.angular.io/guide/typography
@import '[email protected]/material/theming';
// Define a custom typography config that overrides the font-family as well as the
// `headlines` and `body-1` levels.
$custom-typography: mat-typography-config(
$font-family: monospace,
$headline: mat-typography-level(32px, 48px, 700),
$body-1: mat-typography-level(16px, 24px, 500)
);
// Override typography for all Angular Material, including mat-base-typography and all components.
@include angular-material-typography($custom-typography);
編輯;備份字體家族(注意引用):
$font-family: '"Sintony", Arial, sans-serif'
相關問題
- 1. 角材料MD-開關
- 2. 角材料 - 如何開始?
- 3. 與$角材料關注
- 4. 角材料開關拇指內的文字
- 5. 字體家庭在iPhone
- 6. 黑莓字體家庭
- 7. 角2材料
- 8. 角材料
- 9. YouTube API V3家庭飼料
- 10. 帶開關角度過濾器列表(角材料)?
- 11. WPF字體家族:Fonts.SystemFontFamilies&System.Drawing.Text.InstalledFontCollection()。家庭
- 12. 角材料單獨MD-標籤體
- 13. 角材料標籤
- 14. 角質材料mdMenu
- 15. 角度材料,$ mdDialog
- 16. 角材料問題
- 17. 如何角材料
- 18. 角材料io MatDatePicker
- 19. 角材料+角通用
- 20. 字體家庭不字型工作
- 21. 角材料 - 無法解析 '@角/材料/主題化'
- 22. md-warn開關適用於角度材料
- 23. 如何打開/關閉角材料菜單
- 24. 角材料md開關與對象陣列
- 25. CSS字體家庭偏好改變
- 26. 包含文本,字體家庭在Firefox
- 27. 字體家庭不工作在PHP
- 28. CSS:的字體家庭風格
- 29. EPPlus字體家庭不受影響
- 30. 字體家庭不顯示在IE8中
難道你只是使用CSS? –