以下关于奇偶选择器论述正确的是()。 tr:nth-child(odd){ color:red; }A.表格奇数行,背景颜色为红色B.表格奇数行,文字颜色为红色C.表格偶数行,背景颜色为红色D.表格偶数行,文字颜色为红色
以下关于奇偶选择器论述正确的是()。 tr:nth-child(odd){ color:red; }
A.表格奇数行,背景颜色为红色
B.表格奇数行,文字颜色为红色
C.表格偶数行,背景颜色为红色
D.表格偶数行,文字颜色为红色
参考答案和解析
相邻兄弟选择器用于选择紧接在某元素之后的兄弟元素。该元素与其相邻兄弟元素之间以加号“+”分隔。;相邻兄弟选择器的语法格式为:兄元素+弟元素{属性1:属性值1; 属性2:属性值2;};普通兄弟选择器用于选择拥有相同父元素的元素。元素之间使用波浪号“~”分隔。;普通兄弟选择器的语法格式为:兄元素~弟元素{属性1:属性值1; 属性2:属性值2;}
相关考题:
设有说明var color:(red,green,yellow,blue);a:boolean;下面语句正确的是( )。 Aolor:=‘green‘;Bwriteln(green);Cwriteln(color);Da:=color=red;
以下样式规则正确的是()。 A.h1{color:red。font-size:25px。}B.img{color:red;font-size:25px;}C.h1{font-color:red;font-size:25px;}D.h1{color:red;font-size:25px;}
以下关于样式表项的定义中,错误的是:()。 A.H1, H2 {color:red}B.H1 B{color:red}C.H1#color_red{color:red}DA:Active {color:red}
可以设置超链接被点击过后样式是红色字体的是()。 A.a:link{color:red}B.a:hover{color:red}C.a:visited{color:red}D.a:active{color:red}
以下选项中不能正确把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 ;
以下选项中不能正确把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;
以下选项中不能正确把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;
以下选项中能正确把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;
以下CSS选择符定义中,______属于类选择符。A.P{color:red; font-size:12pt}B.p.blue{color:blue}C.#Red{color:red;)D.PEM {background: yellow}
下列哪个CSS选择器可以实现选择表格的第4、7、10行?()A、tr:nth-child(3n+4)B、tr:nth-child(2n+3)C、tr:nth-child(1n+4)D、tr:nth-child(3n+1)
hr语法格式正确的是()。A、〈hrwidth="500"color="red"align="center"/〉B、〈hr〉〈/hr〉C、〈hrsize="1"color="red"width="400"/〉D、〈hralign="top"/〉
要设置以访问过的连接颜色为红色,下列选项正确的是()。A、A:link{color:red}B、A:active{color:red}:C、A:visited{color:red}D、A:visite(color:red)
关于行内样式语法格式正确的是()。A、〈p style="color:red,font-size:14px;"〉行内样式〈/p〉B、〈p style="color=red;font-size:14px;"〉行内样式〈/p〉C、〈p style="color:red;font-size:14px;"〉行内样式〈/p〉D、以上都不正确
color属性用于定义文本的颜色,以下写法正确的是()A、h2{color:red;}B、h2{color:"red";}C、h2{color:"#F60";}D、h2{color:#FF6600;}
序号伪类选择器语法格式正确的是()。A、li:first-child{color:red;}B、li:last-child(1){color:red;}C、li:nth-child(odd){color:red;}D、li:nth-last-child(5){color:red;}
设置鼠标移动到链接上时候文字变成红色如何设置?()A、a:link{color:red;}B、a:active{color:red;}C、a:visited{color:red;}D、a:hover{color:red;}
以下选项中哪个是给p标签添加颜色的jQuery语法()。A、$("p").css("color","red")B、p.css("color","red")C、p.style.color="red"D、p.style="red"
js的以下操作中可以给div添加样式的是()。A、div.style.color="red"B、div.style="red"C、div.color="red"D、div.style.color("red")
在HTML中,下面()是已被访问过呈红色文字的样式。A、a:link{color:red;}B、a:hover{color:red;}C、a:visited{color:red;}D、a:active{color:red;}
下列关于HTML中的CSS样式表的说法正确的是()。A、CSS样式表的基本选择器有:标记选择器、Id选择器和类选择器及后代选择器B、CSS样式表仅具有继承性C、对于定义样式div.p{color:red;}意思是div下面的应用了类p的标签的字体颜色为红色D、选择器在CSS样式表具有最高优先级
单选题设置鼠标移动到链接上时候文字变成红色如何设置?()Aa:link{color:red;}Ba:active{color:red;}Ca:visited{color:red;}Da:hover{color:red;}
单选题以下选项中哪个是给p标签添加颜色的jQuery语法()。A$(p).css(color,red)Bp.css(color,red)Cp.style.color=redDp.style=red
单选题要设置以访问过的连接颜色为红色,下列选项正确的是()。AA:link{color:red}BA:active{color:red}:CA:visited{color:red}DA:visite(color:red)
单选题在HTML中,下面()是已被访问过呈红色文字的样式。Aa:link{color:red;}Ba:hover{color:red;}Ca:visited{color:red;}Da:active{color:red;}