给DOM对象设置红色的背景颜色,下列写法正确的是?
A: ele . style . backgroundcolor=red ;
B: ele . style . backgroundColor="red";
C: ele . style . background-color="red";
D: ele . style . backgroundColor=red ;
A: ele . style . backgroundcolor=red ;
B: ele . style . backgroundColor="red";
C: ele . style . background-color="red";
D: ele . style . backgroundColor=red ;
举一反三
- Vue中如何通过内联样式设置背景色为黑色 A: :style="{background:'red'}" B: style="{background:'red'}" C: class="{background:'red'}" D: :styles="{background:black}"
- 下列选项中,用于设置文本颜色为红色的是() A: color: red B: font-size: red C: font-size: 24px D: style:red
- 使用jQuery框架后,设置所有div标签的背景颜色为红色的代码是( )。 A: $(“div”).style.css(“background”,”red”) B: $(“div”).style.background=”red” C: $(“div”).css(“background”,”red”) D: $(“div”).style(“background”,”red”)
- 在下面代码使用HTML元素的ID属性,将样式应用于网页上的某个段落:<P id=”firstp”>这是一个段落</P>下面选项中,( )正确将段落文字设置为红色。 A: <Style Type=”text/css”> P {color:red} </Style> B: <Style Type=”text/css”> C: firstp {color:red} </Style> D: <Style Type=”text/css”> .firstp {color:red} </Style> E: <Style Type=”text/css”> P.firstp {color:red} </Style>
- 下面代码使用HTML元素的id属性,将样式应用于网页上的某个段落:<p id="firstp">这是第一个段落</p> 以下关于样式规则定义正确的是( )。 A: <style type="text/css"> p{color:red}</style> B: <style type="text/css"> #firstp {color:red}</style> C: <style type="text/css"> .firstp {color:red}</style> D: <style type="text/css"> p.firstp {color:red}</style>