qt8gt0bxhw|20009F4EEE83|RyanMain|subtext_Content|Text|0xfbff960000000000a600000001000300
Well holy crappolie. Andy Smith posted a real nugget of info related to CSS classes that I had no idea about. Maybe everyone else knows about this - but it sure was news to me. You can put multiple CSS class names inside the same class attribute separated by a space. Who knew?! Take a look.
.foo
{
border: 1px solid black;
}
.bar
{
background: red;
color: green;
}
<span class="foo bar"></span>
I suppose that says a lot for actually taking the time to read the spec.