题目内容

以下是css3中属性选择器的正确语法的是()

A. input:type=text{};
B. input:[type=text]{};
C. input:["type=text"]{};
D. input:[type="text"]{};

查看答案
更多问题

HTML:
  • 1
  • 2
  • 3
  • A
  • B
  • C
CSS:li:nth-child(1){color:red;}哪些元素变为红色?

A. 1
B. A
C. 1和A
D. 没有元素变为红色

HTML:
    div1
  • 1
  • 2
  • 3
    div1
  • A
  • B
  • C
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;}

E:nth-child(n)和E:nth-of-type(n)效果总是不同。

A. 对
B. 错

答案查题题库