| 1 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 |
<head> |
| 3 |
<title>xhtml:class</title> |
| 4 |
<style> |
| 5 |
.nativeclass { |
| 6 |
color: orange; |
| 7 |
} |
| 8 |
.xhtmlclass { |
| 9 |
background-color: green; |
| 10 |
} |
| 11 |
</style> |
| 12 |
</head> |
| 13 |
<body xmlns:ns="http://www.example.com/" |
| 14 |
xmlns:xhtml="http://www.w3.org/1999/xhtml"> |
| 15 |
<h1><code><var>xhtml</var>:class</code></h1> |
| 16 |
|
| 17 |
<ns:element xhtml:class="xhtmlclass" class="nativeclass"> |
| 18 |
The background of this text should be <em>GREEN</em>. |
| 19 |
</ns:element> |
| 20 |
|
| 21 |
</body> |
| 22 |
</html> |