TWT
2015-09-13 12:27
请问为什么 ul > li:first-child{ color: red; } 显示 li 圆点为红色,而 ul > li :first-child{ color: red; } (li与:first-child之间有空格)却变成各 li 下的文字变成红色呢?请问是因为空格代表后代选择器吗?
li:first-child表示ul的第一个子元素;
li :first-child无效的选择,选取为li
十天精通CSS3
242554 学习 · 2623 问题
相似问题