实现CSS,选择字体颜色或系列?

时间:2015-06-06 21:37:00

标签: html css frameworks

我想把一些文字换成橙色。这是一个h4,或只是需要改变它的颜色。

http://materializecss.com/typography.html

有不同的Roboto字体系列,但我不知道如何在不使用font-family的情况下使用它...

5 个答案:

答案 0 :(得分:1)

你提到的matz库中没有像css类那样的东西。

应该是这样的 .blue-text text-darken-2

有关matz的颜色使用部分的更多参考。

答案 1 :(得分:0)

您必须在css文件中使用font-family

h4 {
  font-family:sans-serif;
  color:orange;
}

答案 2 :(得分:0)

我想改变颜色,然后:

<h3 class="orange">Hello world!</h4>

如果你想为文本着色,你可以做

<h4 class="orange text-white">Hello world!</h4>

请参阅http://materializecss.com/color.html

答案 3 :(得分:0)

你可以这样做:

<h4 class='text-orange text-darken-3'>TITLE</h4>

答案 4 :(得分:0)

只需将此添加到您的自定义CSS。

.dropdown-content, .select-dropdown{
  font-family: "BT Mono bold" !important;   
}