答案是可以的, 
 An element with two classes looks like this:
HTML Example<a class='class2 class1' href='/'>link</a>CSS File.class1{ color: black; }
.class2{ color: red; }In the above example, the link color would be red. This is because the specificity for both selectors is the same (10). The conflict is won by the overriding class, class2.Not so with the following css:
CSS File 2a.class1{ color: black; }
.class2{ color: red; }
请看http://dhtmlkitchen.com/learn/css/multiclass/