样式表定义.outer{background-color:red}表示()。
A: 网页中某一个id为outer的元素的背景色是红色的
B: 网页中含有class=”outer”元素的背景色是红色的
C: 网页中元素名为outer元素的背景色是红色的
D: 其余选项都可以
A: 网页中某一个id为outer的元素的背景色是红色的
B: 网页中含有class=”outer”元素的背景色是红色的
C: 网页中元素名为outer元素的背景色是红色的
D: 其余选项都可以
举一反三
- CSS中定义.outer{background-color:red}的含义是( )。 A: 网页中某个id=outer的元素,背景色是红色 B: 网页中class=outer的元素,背景色是红色 C: 网页中元素名为.outer的元素,背景色为红色 D: 网页中class=.outer的元素,背景色是红色
- 样式表定义 .outer {background-color:red} 表示
- 样式表定义 .outer{ background:red; } 表示
- document.bgColor="red"的意思是() A: 设置网页的文字颜色为红色 B: 设置ID为document的标签的背景色为红色 C: 设置网页的背景色为红色 D: 语法错误
- $("p").css("background-color","red");把所有 p 元素的背景色设置为红色。