• 2022-06-07
    在CSS中,()属性用于综合设置列表样式。
    A: list-style
    B: list-style-typ
    C: list-style-imageposition
    D: list-style-image
  • A

    内容

    • 0

      What<br/>title does MLA style use for the list of sources? () A: Works<br/>Cited B: Bibliography C: References

    • 1

      多重CSS样式的优先级正确的是? A: (外部样式)External style sheet >(内部样式)Internal style sheet >内联样式)Inline style > 浏览器默认样式 B: 浏览器默认样式>内联样式)Inline style > (内部样式)Internal style sheet >(外部样式)External style sheet C: (内部样式)Internal style sheet >内联样式)Inline style > (外部样式)External style sheet > 浏览器默认样式 D: 内联样式)Inline style > (内部样式)Internal style sheet >(外部样式)External style sheet > 浏览器默认样式

    • 2

      在html文件中应用abc.css文件中的样式的方法有() A: <;link href="abc.css" type="text/css" rel="stylesheet">; B: <;style type="text/css">;@import url(abc.css);<;/style>; C: <;style type="text/css">;@import (abc.css);<;/style>; D: <;style type="text/css">;import url (abc.css);<;/style>;

    • 3

      在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>

    • 4

      下面代码使用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>