课程
/前端开发
/HTML/CSS
/十天精通CSS3
如果想用 first-child 把Link1设置成红色,其他颜色都不变(包括前面的圆点),style代码怎么写的?
2015-05-29
源自:十天精通CSS3 6-6
正在回答
ul > li:first-child a{
color: red;
}
阿甘2015 提问者
a{
color:inherit
li:first-child:first-child{
color:red;
ul > li > a : first-child { color: red; }
这样也可以??
慕斯卡9626126
ul > li:first-child a,ul>li:first-child{
嗯~~,这个提问大家都在考虑......
举报
本课程为CSS3入门教程,深刻详解CSS3知识让网页穿上绚丽装备
1 回答first-child
3 回答first-child不懂
4 回答怎样把每个圆点都变成红色呢
5 回答:first-child的真正含义?
1 回答请问 ul > li:first-child{ color: red; } 与 ul > li :first-child{ color: red; } (li与:first-child之间有空格)的差异