TW Bootstrap自定义字体

时间:2014-03-23 18:04:56

标签: html css twitter-bootstrap

我想问一下是否有人能够带我一步一步地了解如何使用TW Bootstrap获取自定义字体?

干杯伙伴

2 个答案:

答案 0 :(得分:2)

您只需使用*(通配符)元素添加一些css:

@import url(http://fonts.googleapis.com/css?family=Ubuntu+Mono);

* {
    font-family: 'Ubuntu Mono', sans-serif !important;
}

这里是fiddle

答案 1 :(得分:1)

您可以使用@Lando建议的内容,或尝试在标题中添加此内容

<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>

让它普及

* {
font-family: 'Lato', sans-serif;

}

或添加自定义类

.custom_Class {
font-family: 'Lato', sans-serif;

}