以下是css3中属性选择器的正确语法的是()
A. input:type=text{};
B. input:[type=text]{};
C. input:["type=text"]{};
D. input:[type="text"]{};
HTML:CSS:li:nth-child(1){color:red;}哪些元素变为红色?
A. 1
B. A
C. 1和A
D. 没有元素变为红色
HTML:CSS:li:nth-child(1){color:red;}哪些元素变为红色?
A. 1
B. A
C. 1和A
D. 没有元素变为红色
以下()将奇数个li元素字体设置为红色
A. li:nth-child(2n){color:red;}
B. li:nth-child(2n+1){color:red;}
C. li:nth-child(even){color:red;}
D. li:nth-child(odd){color:red;}