更多“我们想要让当前页面的背景色为蓝色,应该使用哪一句代码来描述此种设置?()A、bgcolor="blue"B、bgground="blue"C、backcolor="blue"D、background="blue"”相关问题
  • 第1题:

    你正在创建一个skin文件,它用来格式化Label控件的为蓝色文本、TimesNewRoman字体。你应该使用下面那一个skin文件?()

    A.<asp:Label BackColor="White" ForeColor="Blue" Font-Name="Times New Roman"Font-Size="10px" />

    B.<asp:Label runat="server" ID="BlueLabel" BackColor="White" ForeColor="Blue"Font-Name="Times New Roman" Font-Size="10px" />

    C.<asp:Label ID="BlueLabel" BackColor="White" ForeColor="Blue" Font-Name="Times New Roman" Font-Size="10px" />

    D.<asp:Label runat="server" BackColor="White" ForeColor="Blue"Font-Name="Times New Roman" Font-Size="10px" />


    参考答案:D

  • 第2题:

    Which of the following is the correct pin out for T568B?()

    A. Orange/white, orange, green/white, blue, blue/white, green, brown/white, brown

    B. Blue, blue/white, orange/white, orange, brown/white, brown, green/white, green

    C. Green/white, green, orange/white, blue, blue/white, orange, brown/white, brown

    D. Orange/white, orange, brown/white, brown, green/white, green, blue, blue/white


    参考答案:A

  • 第3题:

    我们想要让当前整个表格的背景色为蓝色,应该使用哪一句代码来描述此种设置?()

    A.bgcolor="blue"

    B.bgground="blue"

    C.backcolor="blue"

    D.background="blue"


    参考答案:A

  • 第4题:

    1 like the blue sweater,(改为否定句)

    ________ ________ ________the blue sweater.


    正确答案:
    43.I don't like

  • 第5题:

    以下CSS选择符定义中,______属于类选择符。

    A.P{color:red; font-size:12pt}
    B.p.blue{color:blue}
    C.#Red{color:red;)
    D.PEM {background: yellow}

    答案:B
    解析:
    本题考查CSS的基础知识。CSS(Cascading Style Sheets,层叠样式表,简称为样式表)是用于(增强)控制网页样式并允许将样式信息与网页内容分离的一种标记性语言。在CSS基本语法结构中,样式表的结构为:选择符{属性1:值1;属性2:值2;…}其中,选择符有如下几种形式:(1)HTML标记。任何HTML标记都可以是一个CSS的选择符,如P{color:red;font-size:12pt}。(2)类选择符。一个选择符能有不同的CLASS(类),因而允许同一元素有不同的样式。格式如下:标记名:类名{属性1:值1;属性2:值2;…}(3)ID选择符。ID选择符个别地定义每个元素的成分。这种选择符应该尽量少用,因为它具有一定的局限。一个ID选择符的指定要有指示符“#”在名字前面。(4)关联选择符。关联选择符是用空格隔开的两个或更多的单一选择符组成的字符串。这些选择符可以指定一般属性,而且因为层叠顺序的规则,它们的优先权比单一的选择符大。

  • 第6题:

    蓝莓的英文名称是()。

    • A、Black berry
    • B、mango
    • C、Blue pear
    • D、Blue berry

    正确答案:D

  • 第7题:

    下列代码段是某页面的样式设置:< STYLE TYPE=”text/css”>.blue{color:blue}.red{color:red}< /STYLE>现要求将页面中的第一个H1标题设置为红色,第一个段落设置为蓝色.下列代码正确的是()

    • A、<H1 id=red>第一个标题</H1><P id=blue>第一个段落</p> 
    • B、<H1 color:red>第一个标题</H1><P color:blue>第一个段落</p> 
    • C、<H1 class=red>第一个标题</H1><P class=blue>第一个段落</p> 
    • D、<H2 class=red>第一个标题</H2><H1>第一个标题<H1><P id=blue>第一个段落</p>

    正确答案:C

  • 第8题:

    我们想要让当前整个表格的背景色为蓝色,应该使用哪一句代码来描述此种设置?()

    • A、bgcolor="blue"
    • B、bgground="blue"
    • C、backcolor="blue"
    • D、background="blue"

    正确答案:A

  • 第9题:

    单选题
    我们想要让当前整个表格的背景色为蓝色,应该使用哪一句代码来描述此种设置?()
    A

    bgcolor=blue

    B

    bgground=blue

    C

    backcolor=blue

    D

    background=blue


    正确答案: C
    解析: 暂无解析

  • 第10题:

    多选题
    为了给页面所有标题创建样式规则,指定将所有的标题显示为蓝色,字体显示为Arial。下列操作正确的是()。
    A

    <STYLE TYPE=text/css>H1{color:blue}H1{font-family:Arial}</STYLE>

    B

    <STYLE TYPE=text/css>H1{color:blue;fontface:Arial}</STYLE>

    C

    <STYLE TYPE=text/css>H1{color:blue;font-family:Arial}</STYLE>

    D

    <STYLE TYPE=text/css>H1{color:blue}H1{fontface:Arial}</STYLE>


    正确答案: D,C
    解析: 暂无解析

  • 第11题:

    单选题
    我们想要让当前页面的背景色为蓝色,应该使用哪一句代码来描述此种设置?()
    A

    bgcolor=blue

    B

    bgground=blue

    C

    backcolor=blue

    D

    background=blue


    正确答案: D
    解析: 暂无解析

  • 第12题:

    多选题
    改变class不为demo的div元素的背景色,以下哪些写法是错误的?()
    A

    $(div.demo).css(background,blue)

    B

    $(div:not(.demo)).css({background:blue})

    C

    $(div:not(.demo)).css({background,blue})

    D

    $(div:not(.demo)).css(background,blue)


    正确答案: C,D
    解析: 暂无解析

  • 第13题:

    下列枚举类型的定义中,包含枚举值3的是

    A.enum test{RED,YELLOW,BLUE,BLACK};

    B.enum test{RED,YELLOW=4,BLUE,BLACK};

    C.enum test{RED=-1,YELLOW,BLUE,BLACK};

    D.erium test{RED,YELLOW=6,BLUE,BLACK};


    正确答案:A
    解析:在枚举类型定义中,如果没有进行显式设置,则隐式设置整数值。将枚举声明中的第一个枚举值设置为O。后续所有成员的值如果没有进行显式设置,便确定为前一个成员的值加1。所以只能选择答案A)。选项B)中对应的枚举值是0,4,5,6;选项c)中对应的枚举值是-1,0,1,2;选项D)中对应的枚举值是0,6,7,8。

  • 第14题:

    下列选项中不能正确定义结构体的是_______。

    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;


    正确答案:B
    解析:将一个变量定义为标准类型与定义为结构体类型不同之处在于:后者不仅要求指定变量为结构体类型,而且要求指定为某一特定的结构体类型(例如,struct color),不能只指定结构体名。其中可以不出现结构体名,答案D就是缺省结构体名的隋况。而变量名歹婊必须放在成员列表后面,所以B答案不能正确将cl定义为结构件变量。

  • 第15题:

    我们想要让当前页面的背景色为蓝色,应该使用哪一句代码来描述此种设置?()

    A.bgcolor="blue"

    B.bgground="blue"

    C.backcolor="blue"

    D.background="blue"


    参考答案:A

  • 第16题:

    这只钢笔是蓝色的。

    ________ pen________ blue


    正确答案:
     38. This;is

  • 第17题:

    Which statement creates a new user?()

    • A、CREATE USER susan;
    • B、CREATE OR REPLACE USER susan;
    • C、CREATE NEW USER susan    DEFAULT;
    • D、CREATE USER susan    IDENTIFIED BY blue;
    • E、CREATE NEW USER susan   IDENTIFIED by blue;
    • F、CREATE OR REPLACE USER susan   IDENTIFIED BY blue;

    正确答案:D

  • 第18题:

    改变class不为demo的div元素的背景色,以下哪些写法是错误的?()

    • A、$("div.demo").css("background","blue")
    • B、$("div:not(.demo)").css({"background":"blue"})
    • C、$("div:not(.demo)").css({"background","blue"})
    • D、$("div:not(.demo)").css("background","blue")

    正确答案:A,C

  • 第19题:

    Which of the following is the correct pin out for T568B?()

    • A、Orange/white, orange, green/white, blue, blue/white, green, brown/white, brown
    • B、Blue, blue/white, orange/white, orange, brown/white, brown, green/white, green
    • C、Green/white, green, orange/white, blue, blue/white, orange, brown/white, brown
    • D、Orange/white, orange, brown/white, brown, green/white, green, blue, blue/white

    正确答案:A

  • 第20题:

    你正在创建一个skin文件,它用来格式化Label控件的为蓝色文本、TimesNewRoman字体。你应该使用下面那一个skin文件?()

    • A、<asp:Label BackColor="White" ForeColor="Blue" Font-Name="Times New Roman"Font-Size="10px" />
    • B、<asp:Label runat="server" ID="BlueLabel" BackColor="White" ForeColor="Blue"Font-Name="Times New Roman" Font-Size="10px" />
    • C、<asp:Label ID="BlueLabel" BackColor="White" ForeColor="Blue" Font-Name="Times New Roman" Font-Size="10px" />
    • D、<asp:Label runat="server" BackColor="White" ForeColor="Blue"Font-Name="Times New Roman" Font-Size="10px" />

    正确答案:D

  • 第21题:

    问答题
    If there are only red, blue, and green marbles in a jar, what is the ratio of red to blue marbles?  (1) The ratio of red to green marbles is 2:3.  (2) The ratio of green to blue marbles is 6:5.

    正确答案: C
    解析:
    题目中含三个未知量,(1)、(2)条件相结合可以计算红色和蓝色珠子的比例,两个条件无法单独决定,故本题选C项。

  • 第22题:

    单选题
    An occluded front on a weather map is colored().
    A

    blue line

    B

    purple line

    C

    dashed blue line

    D

    alternate red and blue line


    正确答案: A
    解析: 暂无解析

  • 第23题:

    单选题
    Which of the following is the correct pin out for T568B?()
    A

    Orange/white, orange, green/white, blue, blue/white, green, brown/white, brown

    B

    Blue, blue/white, orange/white, orange, brown/white, brown, green/white, green

    C

    Green/white, green, orange/white, blue, blue/white, orange, brown/white, brown

    D

    Orange/white, orange, brown/white, brown, green/white, green, blue, blue/white


    正确答案: C
    解析: 暂无解析