I'm interested in finding out the most efficient way to style an element with text that is bold, underlined, and blue in color. For example, I could do it like this:
<p class="bold underlined blue">Happy little clouds</p>
or
<p class="bold-underlined-blue">Happy little trees</p>
The first option would result in more classes being used, but the potential for reusing these classes seems beneficial compared to creating one very specific class. However, having more classes may impact performance.