css中这里两个.点什么意思啊

来源:百度知道 编辑:UC知道 时间:2024/06/03 20:40:35
.main.top1{
width:800px;
height:40px;
background:#ffaaff;
border:1px solid #dddddd;
}

就是.main.top1,第二个什么呢

例如:
<style type="text/css">
.main.top1{
width:800px;
height:40px;
background:#ffaaff;
border:1px solid #dddddd;
}
</style>
<div class="main"> /*此无定义样式*/
<div class="top1"> /*此应用了上面的样式*/
</div>
</div>

它是top1的规则,但并不是所有的top1类都符合要求。只有其父类为main的时候,此规则才产生作用!

main下的top类

就是所有的意思吧