1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
4 <title>Case sensitivity</title>
5 <style type="text/css"><![CDATA[
7 .cs P { background: red; color: yellow; }
8 .cs .a { background: red; color: yellow; }
9 .cs .span1 span { background: red; color: yellow; }
10 .cs .span2 { color: red; }
11 .cs .span2 SPAN { color: green; }
12 .cs .span2 span { background: red; color: yellow; }
14 .ci P { background: green; color: white; }
15 .ci .a { background: green; color: white; }
16 .ci .span1 span { background: green; color: white; }
17 .ci .span2 SPAN { background: green; color: white; }
19 <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
20 <link rel="prev" href="css3-modsel-180a.xml" title="::first-letter after <br>"/>
21 <link rel="next" href="css3-modsel-182.xml" title="Namespaces and \: in selectors"/>
22 <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
23 <link rel="up" href="./index.html"/>
24 <link rel="top" href="../../index.html"/>
30 <p>This line should be green.</p>
31 <p class="A">This line should be green.</p>
32 <p class="span1"><SPAN>This line should be green.</SPAN></p>
33 <p class="span2"><SPAN>This line should be green.</SPAN></p>