在HTML中使用( ) 标签引入css内部样式表
A: <style>
B: <strong>
C: <p>
D: <link/>
A: <style>
B: <strong>
C: <p>
D: <link/>
举一反三
- 在HTML文件中应用abc.css文件中的样式的方法有( ) A: <link href="abc.css" type="text/css" rel="stylesheet"> B: <style type="text/css">@import (abc.css);</style> C: <style type="text/css">import url (abc.css);</style> D: <style type="text/css">@import url(abc.css);</style>
- {下面代码使用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>}
- 下面哪个属于标签选择器( ) A: <style type=”text/css”> pa{bgcolor:red}</style> B: <style type=”text/css”> .mv{bgcolor:green}</style> C: <style type=”text/css”> D: first{bgcolor:blue}</style> E: <style type=”text/css”> div{bgcolor:red}</style>
- 关于行内式引入CSS样式表,以下书写正确的是( ) A: <p style=font-size:12px; color:red;>段落文本</p> B: <p style="font-size:12px, color:red;">段落文本</p> C: <p style="font-size:12px; color:red;">段落文本</p> D: <p style="font:12px; color:red;">段落文本</p>
- 以下写法属于标签选择器的是() A: <style type=”text/css”> div{font-size:12px}</style> B: <style type=”text/css”> C: div{bgcolor:black}</style> D: <style type=”text/css”> spen{width:200px}</style> E: <style type=”text/css”> .div{height:200px}</style>