要设定表格中某一单元格的边框颜色为红色,背景颜色为绿色,则下面的属性设置中正确的是()A、<table  bgcolor = "green"  bordercolor="red"> B、<td  bgcolor="red"  bordercolor="green"> C、<tr  bgcolor="green" bordercolor="red">D、<td  bgcolor="green"  bordercolor="red">

题目

要设定表格中某一单元格的边框颜色为红色,背景颜色为绿色,则下面的属性设置中正确的是()

  • A、<table  bgcolor = "green"  bordercolor="red"> 
  • B、<td  bgcolor="red"  bordercolor="green"> 
  • C、<tr  bgcolor="green" bordercolor="red">
  • D、<td  bgcolor="green"  bordercolor="red">

相似考题
参考答案和解析
正确答案:D
更多“要设定表格中某一单元格的边框颜色为红色,背景颜色为绿色,则下面的属性设置中正确的是()A、table  bgcolor = "green"  bordercolor="red" B、td  bgcolor="red"  bordercolor="green" C、tr  bgcolor="green" bordercolor="red"D、td  bgcolor="green"  bordercolor="red"”相关问题
  • 第1题:

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

    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定义为结构件变量。

  • 第2题:

    我们想要让表格的边框在页面中一定不显示出来,用什么方法可以做到呢?()

    A.bgcolor="white"

    B.bgcolor="null"

    C.border="0"

    D.bordercolor="white"


    参考答案:C

  • 第3题:

    设置表格边框色彩的HTML代码是()

    • A、<table color=#> 
    • B、<th bordercolor=#> 
    • C、<table bordercolor=#> 
    • D、<th color=#>

    正确答案:C

  • 第4题:

    要设定表格中某一单元格的边框颜色为红色,背景颜色为绿色,则下面的属性设置中正确的是()。

    • A、<table bgcolor=green bordercolor=red>
    • B、<td bgcolor=red bordercolor=green>
    • C、<tr bgcolor=green bordercolor=red>
    • D、<td bgcolor=green bordercolor=red>

    正确答案:D

  • 第5题:

    若要将网页的背景颜色设置为蓝色,应将BODY标记的BGCOLOR属性设置为();若要将网页中正文的颜色设置为红色,应将BODY标记的()属性设置为red。


    正确答案:BLUE;TEXT

  • 第6题:

    在RGB彩色模型中,如果要产生黄色(Yellow),应是()颜色的混合。

    • A、Red+Green+Blue
    • B、Red+Green
    • C、Red+Blue
    • D、Green+Blue

    正确答案:B

  • 第7题:

    当语句w=IIf(4>10,”Red”,“Green”)执行后,变量w中的值是()。

    • A、Null
    • B、“Red”
    • C、“Green”
    • D、-1

    正确答案:C

  • 第8题:

    插入“水平线”后,要更改水平线颜色为红色,应该()

    • A、在属性面板更改颜色
    • B、在文件面板上更改颜色
    • C、选中水平线,在编辑标签代码中输入“color=red”
    • D、选中水平线,在编辑标签代码中输“bordercolor-red”

    正确答案:C

  • 第9题:

    问答题
    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项。

  • 第10题:

    单选题
    要设定表格中某一单元格的边框颜色为红色,背景颜色为绿色,则下面的属性设置中正确的是()。
    A

    <table bgcolor=green bordercolor=red>

    B

    <td bgcolor=red bordercolor=green>

    C

    <tr bgcolor=green bordercolor=red>

    D

    <td bgcolor=green bordercolor=red>


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

  • 第11题:

    单选题
    插入“水平线”后,要更改水平线颜色为红色,应该()
    A

    在属性面板更改颜色

    B

    在文件面板上更改颜色

    C

    选中水平线,在编辑标签代码中输入“color=red”

    D

    选中水平线,在编辑标签代码中输“bordercolor-red”


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

  • 第12题:

    单选题
    代码:document.bgColor="red"的意思是()。
    A

    设置网页的文字颜色为红色

    B

    设置ID为document的标签的背景色为红色

    C

    设置网页的背景色为红色

    D

    语法错误


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

  • 第13题:

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


    正确答案:D
    解析:因为结构体中不能出现同名的成员变量,所以选项A和B都是错误的;又因为结构体中成员的定义应该由分号隔开,所以选项C也是错误的。选项D定义了一个无名结构体,并同时定义该结构体变量c1,是正确的写法。故应该选择D。

  • 第14题:

    A green pillar lightbuoy,Fl(2) 5s,is to be substituted for the red conical lightbuoy Close S.W.of the stranded wreck.The above sentence mainly refers to______.

    A.a red buoy is to be replaced by a green buoy

    B.a green buoy is to be replaced by a red buoy

    C.either a red buoy or a green buoy is to be replaced

    D.neither a red buy nor a green buoy is to be replaced


    正确答案:A
    绿色的浮标代替红色的浮标。

  • 第15题:

    以下()标记可以将HTML文档背景颜色设置为绿色,文字颜色为黄色。

    • A、<BODYBGCOLOR=”green”TEXT=”yellow”>内容</BODY>
    • B、<BGCOLOR=”green”TEXT=”yellow”>
    • C、<BACKGROUND=”green”TEXT=”yellow”>内容>
    • D、<BGSOUND=”green”TEXT=”yellow”>

    正确答案:A

  • 第16题:

    若要在网页中设置背景色为红色,以下标记中正确的是()

    • A、<body bgcolor="red">
    • B、<a href="URL">"PicName"</a>
    • C、<body alink="red">
    • D、<body bgcolor="#FFFFBB"> 

    正确答案:A

  • 第17题:

    我们想要让表格的边框在页面中一定不显示出来,用什么方法可以做到呢?()

    • A、bgcolor="white"
    • B、bgcolor="null"
    • C、border="0"
    • D、bordercolor="white"

    正确答案:C

  • 第18题:

    代码:document.bgColor="red"的意思是()。

    • A、设置网页的文字颜色为红色
    • B、设置ID为document的标签的背景色为红色
    • C、设置网页的背景色为红色
    • D、语法错误

    正确答案:C

  • 第19题:

    Which of the following is the correct wiring order for an RJ-11 two line jack?()

    • A、Black,Green,Red,Yellow
    • B、Black,Red,Green,Yellow
    • C、Red,Black,Green,Yellow
    • D、Yellow,Red,Green,Black

    正确答案:B

  • 第20题:

    单选题
    以下()标记可以将HTML文档背景颜色设置为绿色,文字颜色为黄色。
    A

    <BODYBGCOLOR=”green”TEXT=”yellow”>内容</BODY>

    B

    <BGCOLOR=”green”TEXT=”yellow”>

    C

    <BACKGROUND=”green”TEXT=”yellow”>内容>

    D

    <BGSOUND=”green”TEXT=”yellow”>


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

  • 第21题:

    单选题
    要设定表格中某一单元格的边框颜色为红色,背景颜色为绿色,则下面的属性设置中正确的是()
    A

    <table  bgcolor = green  bordercolor=red> 

    B

    <td  bgcolor=red  bordercolor=green> 

    C

    <tr  bgcolor=green bordercolor=red>

    D

    <td  bgcolor=green  bordercolor=red>


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

  • 第22题:

    单选题
    Which of the following is the correct wiring order for an RJ-11 two line jack?()
    A

    Black,Green,Red,Yellow

    B

    Black,Red,Green,Yellow

    C

    Red,Black,Green,Yellow

    D

    Yellow,Red,Green,Black


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

  • 第23题:

    填空题
    若要将网页的背景颜色设置为蓝色,应将BODY标记的BGCOLOR属性设置为();若要将网页中正文的颜色设置为红色,应将BODY标记的()属性设置为red。

    正确答案: BLUE,TEXT
    解析: 暂无解析