1 <html xmlns="http://www.w3.org/1999/xhtml">
3 <title>Universal selector without declared namespace</title>
4 <style type="text/css"><![CDATA[@namespace a url(http://www.example.org/a);
5 @namespace b url(http://www.example.org/b);
6 div.green * { background-color : red }
7 div.test * { display : block ; margin-bottom : 1em }
8 div.test |* { background-color : lime }]]></style>
9 <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
10 <link rel="prev" href="css3-modsel-95.xml" title="Universal selector with universal namespace"/>
11 <link rel="next" href="css3-modsel-96b.xml" title="Universal selector without declared namespace"/>
12 <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
13 <link rel="up" href="./index.html"/>
14 <link rel="top" href="../../index.html"/>
18 <p>This line should be unstyled.</p>
19 <elementA xmlns="http://www.example.org/a">This line should be unstyled.</elementA>
20 <elementB xmlns="http://www.example.org/b">This line should be unstyled.</elementB>
22 <p xmlns="">This line should have a green background</p>
23 <elementA xmlns="">This line should have a green background</elementA>
24 <elementB xmlns="">This line should have a green background</elementB>