<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="enen-gb" lang="en">

<head>
<title>Namespaces (Invalid)</title>
<link rel="author" title="Alan Gresley" href="http://css-class.com/" />

<style type="text/css">

@namespace xmlns url(http://www.w3.org/1999/xhtml);
#test1 { background:red }

</style>

</head>

<body>

<div>@namespace xmlns url(http://www.w3.org/1999/xhtml);</div>

<p id="test1">#test1 - If this line is red, then an ID selector in a default namespace matches</p>

</body>
</html>