把下面代码中第一个h1下面的strong元素变为红色,第二个strong不受影响。 [h1]这是[strong]非常[/]重要的[/] [h1]这个[em]已经[strong]非常[/][/em]重要了A: h1>strong{color:red;}
B: h1 strong{color:red;}
B: h1 strong{color:red;}
举一反三
- 把下面代码中Strong元素变为红色 [h1]这是[strong]非常[/]重要的[/] [h1]这个[em]已经[strong]非常[/][/em]重要了</h1 A: h1>strong{color:red;} B: h1 strong{color:red;}
- 要选择下列代码中第一个strong标签并将字体颜色设置为红色,该如何写css。() [body] [h1]我[strong]超级[/][strong]喜欢[/]网页设计.[/] [h1]我[em]不是很[strong]喜欢[/][/em]网页设计.[/] </body A: h1strong{color:red;} B: .sh1.strong{color:red;} C: strong{color:red;} D: h1>strong{color:red;}
- HTML代码如下: [body] [strong]文字[/] [/] 以下哪个选择器,能够取得到上面的strong标记? A: $(":strong") B: $("div.strong") C: $("div>strong") D: $("div
- 现要求将页面中的第一个大标题设置为红色,第一个段落设置为绿色,则下列代码正确的是( ) 未知类型:{'options': ['[h1 style="color: red;"]第一个大标题[/] [p style="color: green;"]第一个段落', '[h1 id="red;"]第一个大标题[/] [p id="green;"]第一个段落', '[h1 color ="red;"]第一个大标题[/] [p color ="green;"]第一个段落', '[h1 style="red;"]第一个大标题[/] [p style="green;"]第一个段落'], 'type': 102}
- 当标记内嵌套[strong]标记时,就可以使用后代选择器对其中的[strong]标记进行控制,下列写法正确是( )(2.0) A: strong p{color:red;} B: p strong{color:red;} C: strong,p{color:red;} D: p.strong{color:red;}