Okay, I totally knew about this, but forgot until recently. In HTML/CSS, you can actually specify more than one class name inside of the “class” tag. For example:
<style type=”text/css”>
.MyFirstStyle { font-weight: bold; }
.MySecondStyle { background-color: Blue; }
</style>
<span class=”MyFirstStyle”>Only the first style is applied.</span>
<span class=”MyFirstStyle MySecondStyle”>First and second style are applied.</span>
Go ahead, try it yourself.