<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="gb2312"/>
<title></title>
<style type="text/css">
.a1{
font-size:9pt;
color:#FF0000;
}
.a2{
font-size:18pt;
color:#0000FF;
}
</style>
</head>
<body>
<hr>
<span class="a1">a1</span>
<span class="a2">a2</span>
<span class="a2 a1">a2 a1</span>
<span class="a1 a2">a1 a2</span>
</body>
</html>
显示结果:a1 a2 a2 a1 a1 a2
若交换类a1和类a2的位置,
则其显示结果为:a1 a2 a2 a1 a1 a2
由此可见,类定义的位置非常重要。使用class="a2 a1"时,若类定义中a1在a2之前,则a1中的属性将覆盖a2中相应的属性。若类定义中a2在a1之前,则a2中的属性将覆盖a1中相应的属性。