1 <html xmlns="http://www.w3.org/1999/xhtml">
3 <title>Universal selector with universal 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.test * { background-color : red ; display : block ; margin-bottom : 1em }
7 div.test *|* { background-color : lime }]]></style>
8 <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
9 <link rel="prev" href="css3-modsel-94b.xml" title="Universal selector with declared namespace"/>
10 <link rel="next" href="css3-modsel-96.xml" title="Universal selector without declared namespace"/>
11 <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
12 <link rel="up" href="./index.html"/>
13 <link rel="top" href="../../index.html"/>
17 <p>This line should have a green background</p>
18 <p xmlns="http://www.example.org/b">This line should have a green background</p>
19 <q xmlns="http://www.example.org/b">This line should have a green background</q>
20 <p xmlns="http://www.example.org/a">This line should have a green background</p>
21 <foo xmlns="http://www.example.org/b">This line should have a green background</foo>