2016-06-13 |

CSS(cascading style sheets级联样式表)中的选择器是

A
B
C
D
答案:
解释:
选择器在你想应用一个样式的时候,帮助你去选择元素。举例,下面是简单的被命名为”instro”的样式,他适用于HTML元素显示红色背景
<style>
.intro{
background-color:red;
}
</style>
 
应用上面的”intro”样式给div,我们可以使用”class”选择器,如下图所示
 
<div class="intro">
<p>My name is Shivprasad koirala.</p>
<p>I write interview questions.</p>
</div>
html5面试题
it面试经验

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论