下面为网页设置背景色正确的是()。
A: document.body.style.backgroundColor='blue'
B: document.style.backgroundColor='blue'
C: ody.style.backgroundColor='blue'
D: document.body.style.background_color='blue'
A: document.body.style.backgroundColor='blue'
B: document.style.backgroundColor='blue'
C: ody.style.backgroundColor='blue'
D: document.body.style.background_color='blue'
举一反三
- 下面为网页设置背景色正确的是()。 A: document.style.backgroundColor=’blue’ B: body.style.backgroundColor=’blue’ C: document.body.style.backgroundColor=’blue’ D: document.body.style.background_color=’blue’
- 将表格的背景色设为蓝色,正确的属性设置是( )。 A: bgcolor="blue" B: backgroundcolor="blue" C: bgground="blue" D: background="blue"
- 给DOM对象设置红色的背景颜色,下列写法正确的是? A: ele . style . backgroundcolor=red ; B: ele . style . backgroundColor="red"; C: ele . style . background-color="red"; D: ele . style . backgroundColor=red ;
- 有一网页代码如下:<;html>;<;head>;<;style type="text/css">;body{background-color:black;}.bg{background-color:red;}#bg{background-color:blue;}:bg{background-color:green;}<;/style>;<;/head>;<;body class="bg">;<;/body>;<;/html>;则该网页的背景色为( )。 A: black B: red C: blue D: green
- 为了给页面所有〈h1〉标题创建样式规则,指定将所有的〈h1〉标题显示为蓝色,字体显示为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〉