有这样一个结构: 我是p标签 判断下面哪个说法是不正确的:
A.
.father{ color: blue; } .son{ color: red; } 文字的颜色为蓝色
B.
.father .son{ color: blue; } div p{ color: red; } 文字的颜色是蓝色
C.
div.father p.son{ color: blue; } div p{ color:red; } 文字的颜色为蓝色
D.
div.father .son{ color: blue; } div p.son{ color:red; } 文字的颜色为蓝色