● 以下CSS 选择符定义中, (61) 属于类选择符。
(61)
A. P {color:red; font-size:12pt }
B. p.blue{color:blue}
C. #Red{color:red;}
D. P EM { background: yellow }
第1题:
A.H1, H2 {color:red}
B.H1 B{color:red}
C.H1#color_red{color:red}
DA:Active {color:red}
第2题:
A.for(Colorc:Color.values())
B.for(Colorc=RED;c<=BLUE;c++)
C.for(Colorc;c.hasNext();c.next())
D.for(Colorc=Color[0];c<=Color[2];c++)
E.for(Colorc=Color.RED;c<=Color.BLUE;c++)
第3题:
以下选项中不能正确把c1定义成结构体变量的是
A.typedef struct { int red; int green;; int blue; }COLOR; COLOR cl;
B.struct color cl { int red; int green; int blue; };
C.struet color { int red; int green; int blue; }c1;
D.struct { int red; int green; int blue; }cl;
第4题:
以下选项中能正确把c1定义成结构体变量的是( )。
A.typedef struct { int red; int red; int green; int blue; }COLOR; COLOR c1;
B.struct color c1 { int red int red; int green int blue; };
C.stmctcolor { int red, int green; int blue; }c1;
D.struct { int red; int green; int blue; }c1;
第5题:
下列哪个CSS语法是正确的?()
第6题:
关于行内样式语法格式正确的是()。
第7题:
设置鼠标移动到链接上时候文字变成红色如何设置?()
第8题:
以下选项中哪个是给p标签添加颜色的jQuery语法()。
第9题:
在HTML中,下面()是已被访问过呈红色文字的样式。
第10题:
下列选项中,可用于定义背景颜色的是()。
第11题:
<Style Type=”text/css”> P {color:red} </Style>
<Style Type=”text/css”> #firstp {color:red} </Style>
<Style Type=”text/css”> .firstp {color:red} </Style>
<Style Type=”text/css”> P.firstp {color:red} </Style>
第12题:
a:link{color:red;}
a:hover{color:red;}
a:visited{color:red;}
a:active{color:red;}
第13题:
以下选项中不能正确把c1定义成结构体变量的是
A.typedef struct {int red: int green: int blue; } COLOR; COLOR c1;
B.struct color c1 {int red int green: int blue; };
C.struct color {int red , int green : int blue : )cl;
D.struct {int red; int green; int blue } c1 ;
第14题:
以下选项中不能正确把cl定义成结构体变量的是
A.typedef struct { int red; int green; int blue; } COLOR; COLOR cl;
B.struct color cl { int red; int green; int blue; }
C.struct color { int red; int green; int blue; } cl;
D.struct { int red; int green; int blue; } cl;
第15题:
下列选项中不能正确定义结构体的是_______。
A.typedef struct
B.struct color cl {int red; {int red; int green; int green; int blue; int blue; }COLOR; }; COLOR cl;
C.struct color
D.struct {int red; {int red; int green; int green; int blue; int blue; }cl; }cl;
第16题:
第17题:
在HTML中,使用HTML元素的class属性,将样式应用于网页上某个段落的代码如下所示:< P class=“firstp”>这是一个段落< /P> 下面选项中,()正确定义了上面代码引用的样式规则。
第18题:
以下关于标签选择器语法格式正确的是()。
第19题:
下列代码使用HTML元素的ID属性,将样式应用于网页上的某个段落:<P id=”firstp”>这是一个段落</P>,下面选项中,()正确定义了上面代码引用的样式规则。
第20题:
js的以下操作中可以给div添加样式的是()。
第21题:
下列代码段是某页面的样式设置:< STYLE TYPE=”text/css”>.blue{color:blue}.red{color:red}< /STYLE>现要求将页面中的第一个H1标题设置为红色,第一个段落设置为蓝色.下列代码正确的是()
第22题:
public class Ball { public enum Color { RED, GREEN, BLUE }; public void foo() { // insert code here { System.out.println(c); } } } Which code inserted at line 14 causes the foo method to print RED, GREEN, and BLUE?()
第23题:
$(p).css(color,red)
p.css(color,red)
p.style.color=red
p.style=red