问答详情
源自:8-2 选一个标签 - 标签选择器

写了color:red;可是怎么勇气两个字没有变红呢

<h1>{
    font-weight:normal;
    color:red;
}

提问者:慕数据0092838 2017-04-27 14:21

个回答

  • yangching
    2017-06-10 14:52:54

    h1不需要这个<> ,正确的写法是 

    h1{

         font-weight:normal;

         color:red;

    }

    并且要把这个语句写在 <style type="text/css">  </style>这对标签里面

  • 嘴硬欠吻
    2017-04-27 17:37:33

    选择器不带<>

    h1{
        font-weight:normal;
        color:red;
    }

  • CMY123
    2017-04-27 14:35:22

    h1{
        font-weight:normal;
        color:red;
    }

  • 补浪河
    2017-04-27 14:34:59

    去掉h1的<>,直接写h1{font-weight:normal;
                                       color:red;

                                    }

  • 俊客而已丶
    2017-04-27 14:33:36

    选择符不用带括号

    h1{
        font-weight:normal;
        color:red;
    }

  • qq_YM_10
    2017-04-27 14:33:24


    选择器写错了,正确写的方式应该是h1{font-weight:normal;color:red;}这种属于标签选择器。

  • 慕粉1235592561
    2017-04-27 14:32:05

    h1不要<>括号