问答详情
源自:6-6 CSS3 结构性伪类选择器—first-child

如果想用 first-child 把Link1设置成红色,怎么写的?

如果想用 first-child 把Link1设置成红色,其他颜色都不变(包括前面的圆点),style代码怎么写的?

提问者:阿甘2015 2015-05-29 11:00

个回答

  • 菜鸟攻城狮i
    2015-08-03 18:32:08
    已采纳

    ul > li:first-child a{

     color: red;

    }


  • tingfengwenyu
    2015-12-19 09:33:11

    a{

    color:inherit

    }

  • qq_子非鱼呀飞鱼_0
    2015-10-19 11:47:38

    li:first-child:first-child{

    color:red;

    }

  • 米飯
    2015-08-07 16:37:40

    ul > li  > a : first-child {   color: red; }

    这样也可以??


  • 菜鸟攻城狮i
    2015-08-03 18:32:57

    ul > li:first-child a,ul>li:first-child{

     color: red;

    }


  • laiyi
    2015-05-29 11:21:15

    嗯~~,这个提问大家都在考虑......