A. CSS样式表的基本选择器有:标记选择器、id选择器和类选择器及后代选择器 B. CSS样式表仅具有继承性 C. 对于定义样式div .p{color:red;}意思是div下面的应用了类p的标签的字体颜色为红色 D. 选择器在CSS样式表具有最高优先级
A. :after伪元素在元素之后添加内容 B. :after伪元素只能应用于超链接标签a C. 使用:after伪元素可能导致浮动元素塌陷 D. :after不可以在元素之后添加指定链接的文件内容
A. input:type=text{}; B. input:[type=text]{}; C. input:["type=text"]{}; D. input:[type="text"]{};
A. 1 B. A C. 1和A D. 没有元素变为红色
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;}
A. 对 B. 错