阿甘2015
2015-05-29 11:00
如果想用 first-child 把Link1设置成红色,其他颜色都不变(包括前面的圆点),style代码怎么写的?
ul > li:first-child a{
color: red;
}
a{
color:inherit
}
li:first-child:first-child{
color:red;
}
ul > li > a : first-child { color: red; }
这样也可以??
ul > li:first-child a,ul>li:first-child{
color: red;
}
嗯~~,这个提问大家都在考虑......
十天精通CSS3
242554 学习 · 2623 问题
相似问题