为什么不能使用我的字体颜色

这是我的CSS表,我不知道为什么我的字体颜色不工作。 请帮助我。

body {background-color: #d3d3d3;
      font-color; #FF0000;
      font-family: Calibre;
      text-align center;}}
h1   {background-color: #FFFFFF;
      font-color; #FF0000;
      font-family: Calibre;
      text-align center;}
h2   {background-color: #FFFFFF;
      font-color; #FF0000;
      font-family: Calibre;
      text-align center;}
h3   {background-color: #FFFFFF;
     font-color; #FF0000;
      font-family: Calibre;
      text-align center;}
p    {color; #FF0000;
      font-family: Calibre;
      font-size: .90em;
      text-indent: 3em; }    

.nav {font-weight:normal ;
      font-size: .9em; } 

#footer {font-color: #333333;
         font-size: .75em;
         font-style: italic;}
#wrapper {width: 80%;
         margin-left: auto;
         margin-right: auto;}
#Contact {font-family Times new Roman;
         font-size: .75em;
         font-style: bold;}

ps这些是我得到的错误。

2身体值错误:颜色分析错误颜色2身体分析错误#FF0000; 5解析错误[:Caliber; text-align center;}} h1] 10 h2值错误:颜色解析错误颜色10 h2解析错误#FF0000; 13解析错误[:口径; text-align center;} h3] 17 p值错误:颜色解析错误颜色17 p解析错误#FF0000; 22解析错误[:Caliber; font-size:.90em; 文本缩进:3em; } .nav] 31 #Contact Value错误:font-family解析错误时间new Roman 33 #Contact值错误:font-style bold不是字体样式值:bold


有错别字:

  • font-color; #FF0000; 不存在,应该是color: #f00;
  • color: #FF0000; 而不是color; #FF0000; /* change ; for : */ color; #FF0000; /* change ; for : */
  • 不会导致Parse错误,但字体是Calibri ,而不是Calibre

  • 使用

    #footer { color: #F00; }
    

    这应该工作


    设置文本元素的字体颜色,如下所示:

    h1{
    color:#ff0000;
    }
    
    链接地址: http://www.djcxy.com/p/2509.html

    上一篇: why wont my font color work

    下一篇: extract a list of colors from a webpage