1 <html xmlns="http://www.w3.org/1999/xhtml">
3 <title>NEGATED type element selector with universal namespace</title>
4 <style type="text/css"><![CDATA[@namespace html url(http://www.w3.org/1999/xhtml);
5 @namespace a url(http://www.example.org/a);
6 @namespace b url(http://www.example.org/b);
7 div.test *:not(*|div) { display : block ; margin-bottom : 1em ;
8 background-color : red }
9 div.test > *:not(*|p):not(*|div) { background-color : lime }
10 div.stub > *:not(*|div) { background-color : lime }
12 <link rel="first" href="css3-modsel-1.xml" title="Groups of selectors"/>
13 <link rel="prev" href="css3-modsel-118.xml" title="NEGATED type element selector with declared namespace"/>
14 <link rel="next" href="css3-modsel-120.xml" title="NEGATED type element selector without declared namespace"/>
15 <link rel="last" href="css3-modsel-d4.xml" title="Dynamic updating of :first-child and :last-child"/>
16 <link rel="up" href="./index.html"/>
17 <link rel="top" href="../../index.html"/>
22 <p>This paragraph should have a green background.</p>
23 <p xmlns="http://www.example.org/b">This paragraph should have a green background.</p>
24 <p xmlns="">This paragraph should have a green background.</p>
25 <p xmlns="http://www.example.org/a">This paragraph should have a green background.</p>
27 <address>This address should have a green background.</address>
28 <s xmlns="http://www.example.org/b">This paragraph should have a green background.</s>
29 <t xmlns="">This paragraph should have a green background.</t>
30 <u xmlns="http://www.example.org/a">This paragraph should have a green background.</u>