• 2022-05-26
    {下面代码使用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>}
  • 举一反三