<html><head>
<title>Syntax and parsing of class selectors</title>
<style type="text/css">
p { color: green; }
..test { background: red; color: yellow; }
.foo..quux { background: red; color: yellow; }
.bar. { background: red; color: yellow; }
</style>
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors">
<meta name="flags" content="">
</head>
<body>
<p class="test">This text should be green.</p>
<p class=".test">This text should be green.</p>
<p class="foo">This text should be green.</p>
<p class="foo quux">This text should be green.</p>
<p class="foo quux">This text should be green.</p>
<p class=" bar ">This text should be green.</p>
</body></html>