blob: fd2c9fc88ac47bc4162d648a2db14f81879e0b62 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>NEGATED More than one class selector</title>
<style type="text/css">
p { background: green; color: white; }
p:not(.t1):not(.t2) { background: red; color: yellow; }
div { background: red; color: yellow; }
div:not(.t1) { background: green; color: white; }
address { background: green; color: white; }
address:not(.t5):not(.t5) { background: red; color: yellow; }
</style>
<link rel="first" href="css3-modsel-1.html" title="Groups of selectors">
<link rel="prev" href="css3-modsel-14d.html" title="NEGATED More than one class selector">
<link rel="next" href="css3-modsel-15.html" title="ID selectors">
<link rel="last" href="css3-modsel-d4.html" title="Dynamic updating of :first-child and :last-child">
<link rel="up" href="./index.html">
<link rel="top" href="../../index.html">
</head>
<body>
<p class="t1 t2">This line should be green.</p>
<div class="t3">This line should be green.</div>
<address class="t4 t5 t6">This line should be green.</address>
</body>
</html>