<html>
<head>
<title>同時(shí)使用兩個(gè)class</title>
<style type="text/css">
<!--
.one{
color:blue; /* 顏色 */
}
.two{
font-size:22px; /* 字體大小 */
}
-->
</style>
</head>
<body>
<h4>一種都不使用</h4>
<h4 class="one">同時(shí)使用兩種class,只使用第一種</h4>
<h4 class="two">同時(shí)使用兩種class,只使用第二種</h4>
<h4 class="one two">同時(shí)使用兩種class,同時(shí)使用</h4>
<h4>一種都不使用</h4>
</body>
</html>