网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

有一样式表规则:H3{color :blue;font-size:10pt},以下说法正确的是()。

  • A、H3是选择器
  • B、blue属性,color是属性值
  • C、样式表中的冒号(:)可以用=替代
  • D、这个样式表属于类样式表

参考答案

更多 “有一样式表规则:H3{color :blue;font-size:10pt},以下说法正确的是()。A、H3是选择器B、blue属性,color是属性值C、样式表中的冒号(:)可以用=替代D、这个样式表属于类样式表” 相关考题
考题 ● 以下CSS 选择符定义中, (61) 属于类选择符。A. P {color:red; font-size:12pt } B. p.blue{color:blue}C. #Red{color:red;} D. P EM { background: yellow }

考题 设有说明var color:(red,green,yellow,blue);a:boolean;下面语句正确的是( )。 Aolor:=‘green‘;Bwriteln(green);Cwriteln(color);Da:=color=red;

考题 ● 以下CSS 选择符定义中, (61) 属于类选择符。(61)A. P {color:red; font-size:12pt }B. p.blue{color:blue}C. #Red{color:red;}D. P EM { background: yellow }

考题 下面哪个选项不符合样式表的基本语法规则()? A.a:link {color: #FF3366;font-family: "宋体";text-decoration: none;}B.message [PADDING-RIGHT: 0px; DISPLAY: none; PADDING-LEFT: 0px;]C.h1#blue{color:blue;}D.h2{color:red;font-size:14px;}

考题 下面哪个选项不符合样式表的基本语法规则? ()A. h2{color:red;font-size:14px;}B. h1#blue{color:blue;}C. message [PADDING-RIGHT: Opx; DISPLAY: none; PADDING-LEFT: Opx;]D. a:link{color: #FF3366;font-family:"宋体"; text-decoration: none;}

考题 以下关于样式表项的定义中,错误的是:()。 A.H1, H2 {color:red}B.H1 B{color:red}C.H1#color_red{color:red}DA:Active {color:red}

考题 下列()是定义样式表的正确格式。A、{body:color=black(body}B、body:color=blackC、body{color:black}D、{body;color:black}

考题 以下选项中不能正确把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 ;

考题 publicclassBall{publicenumColor{RED,GREEN,BLUE};publicvoidfoo(){//insertcodehere{System.out.println(c);}}}Whichcodeinsertedatline14causesthefoomethodtoprintRED,GREEN,andBLUE?() 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++)

考题 According to Paragraph 2, which of the following is true of colours?A Colors are encoded in girls' DNAB Blue used to be regarded as the color for girlsC Pink used to be a neutral color in symbolizing gendersD White is preferred by babies

考题 以下选项中不能正确把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;

考题 下列哪个CSS属性可以更改样式表的字体颜色()。A.text-color=B.fgcolor:C.text-color:D.color:

考题 以下选项中不能正确把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;

考题 下列选项中不能正确定义结构体的是_______。A.typedef structB.struct color cl {int red; {int red; int green; int green; int blue; int blue; }COLOR; }; COLOR cl;C.struct colorD.struct {int red; {int red; int green; int green; int blue; int blue; }cl; }cl;

考题 以下选项中能正确把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;

考题 对于这样的一个枚举类型:enum Color:byte{Red,Green,Blue,Orange}

考题 以下CSS选择符定义中,______属于类选择符。 A.P{color:red; font-size:12pt} B.p.blue{color:blue} C.#Red{color:red;) D.PEM {background: yellow}

考题 #inner{color:red}属于哪种类型的样式表。()。

考题 下列哪个css属性可以更改样式表的字体颜色()A、text-color=B、fgcolor:C、text-color:D、color:

考题 下面哪个选项不符合样式表的基本语法规则()A、 a:link {color: #FF3366;font-family: "宋体";text-decoration: none;}B、 a:visited {font-family: "宋体";color: #339900;text-decoration: none;}C、 a:hover {color: #FF6600;font-family: "宋体";text-decoration: underline;}D、 a:active (font-family: "宋体";color: #339900;text-decoration: none;)

考题 下列代码段是某页面的样式设置: STYLE TYPE=”text/css”.blue{color:blue}.red{color:red} /STYLE现要求将页面中的第一个H1标题设置为红色,第一个段落设置为蓝色.下列代码正确的是()A、H1 id=red第一个标题/H1P id=blue第一个段落/p B、H1 color:red第一个标题/H1P color:blue第一个段落/p C、H1 class=red第一个标题/H1P class=blue第一个段落/p D、H2 class=red第一个标题/H2H1第一个标题H1P id=blue第一个段落/p

考题 现有:  1. abstract class Color  {  2.protected abstract  String getRGB();     3.  }     4.  5. public class Blue extends Color  {     6.    //insert code here      7.  }  和四个声明:  public String getRGB()  {  return "blue";  }      String getRGB()  {  return  "blue";  )  private  String getRGB()  {  return  "blue";  }      protected String getRGB()  {  return "blue";  )      分别插入到第6行,有几个可以通过编译?()    A、  0B、  1C、  2D、  3

考题 多选题为了给页面所有标题创建样式规则,指定将所有的标题显示为蓝色,字体显示为Arial。下列操作正确的是()。ASTYLE TYPE=text/cssH1{color:blue}H1{font-family:Arial}/STYLEBSTYLE TYPE=text/cssH1{color:blue;fontface:Arial}/STYLECSTYLE TYPE=text/cssH1{color:blue;font-family:Arial}/STYLEDSTYLE TYPE=text/cssH1{color:blue}H1{fontface:Arial}/STYLE

考题 单选题现有:  1. abstract class Color  {  2.protected abstract  String getRGB();     3.  }     4.  5. public class Blue extends Color  {     6.    //insert code here      7.  }  和四个声明:  public String getRGB()  {  return "blue";  }      String getRGB()  {  return  "blue";  )  private  String getRGB()  {  return  "blue";  }      protected String getRGB()  {  return "blue";  )      分别插入到第6行,有几个可以通过编译?()A   0B   1C   2D   3

考题 单选题下面哪个选项不符合样式表的基本语法规则()A  a:link {color: #FF3366;font-family: 宋体;text-decoration: none;}B  a:visited {font-family: 宋体;color: #339900;text-decoration: none;}C  a:hover {color: #FF6600;font-family: 宋体;text-decoration: underline;}D  a:active (font-family: 宋体;color: #339900;text-decoration: none;)

考题 单选题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?()A  for( Color c : Color.values())B  for( Color c = RED; c = BLUE; c++)C  for( Color c; c.hasNext() ; c.next())D  for( Color c = Color[0]; c = Color[2]; c++)E  for( Color c = Color.RED; c = Color.BLUE; c++)

考题 单选题有一样式表规则:H3{color :blue;font-size:10pt},以下说法正确的是()。A H3是选择器B blue属性,color是属性值C 样式表中的冒号(:)可以用=替代D 这个样式表属于类样式表