Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> .big.colorful { font-size: 2em; color: yellowgreen; } </style> <blockquote class="big colorful">Price is what you pay. Value is what you get.</blockquote> <p>The above blockquote is styled, because it has both classes (each separated by a whitespace) required to match the CSS selector.</p> <p>Change or remove one of the classes and you'll see that the CSS is no longer applied.</p>
Preview