x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
    .big.colorful {
5
        font-size: 2em;
6
        color: yellowgreen;
7
    }
8
</style>
9
10
<blockquote class="big colorful">Price is what you pay. Value is what you get.</blockquote>
11
12
<p>The above blockquote is styled, because it has both classes (each separated by a whitespace) required to match the CSS selector.</p>
13
<p>Change or remove one of the classes and you'll see that the CSS is no longer applied.</p>