1つの要素に複数のclassを指定したら

結論:最初に指定したclassの効果だけが現れる

実験に使ったhtml

<html>
<head>
<style>
.it{font-style:italic}
.bd{font-weight:bold}
.itbd{font-style:italic;font-weight:bold}
</style>
</head>
<body>
<div class=it>abc</div>
<div class=bd>abc</div>
<div class=itbd>abc</div>
<div class=it class=bd>abc</div> <!--これはitalicのみ有効-->
<div class=bd class=it>abc</div> <!--これはboldのみ有効-->
</body>
</html>