<!DOCTYPE html><html><head>
<title>Class selectors</title>
<style type="text/css">li { background-color : red }
.t1 { background-color : lime }
li.t2 { background-color : lime }
.t3 { background-color : red }</style>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"> <!-- bogus link to make sure it gets found -->
<meta name="flags" content="">
</head>
<body>
<ul>
<li class="t1"><!--Replaced (li) --></li>
<li class="t2"><!--Replaced (li) --></li>
<li class="t2"><!--Replaced (li) --></li>
</ul>
</body></html>