在网页中,使用行内样式,给一个HTML元素添加样式,使用的是_________属性。
A: style
B: css
C: type
D: script
A: style
B: css
C: type
D: script
举一反三
- 修改DOM树中HTML元素的行内样式需使用元素对象的style属性。
- 使用内嵌式添加CSS样式,CSS样式需要写在()。 A: 〈link〉标记之间 B: <;body>;<;/body>;标记之间 C: <;script>;<;/script>;标记之间 D: <;style>;<;/style>;记之间
- 在HTML中,使用HTML元素的class属性,将样式应用于网页上某个段落的代码如下所示:<Pclass=“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"> E: 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>
- 在HTML的元素上应用CSS类选择器样式,需要添加哪个HTML属性?() A: css= B: class= C: style= D: effect=