Created
May 26, 2021 20:48
-
-
Save bedney/60881e572b09c946ff55637d5dc87669 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<style> | |
@namespace url("http://www.w3.org/1999/xhtml"); | |
@namespace foo url("http://www.foo.com"); | |
foo|* { | |
color: red; | |
} | |
*|* { | |
color: green; | |
} | |
* { | |
color: blue; | |
} | |
</style> | |
</head> | |
<body xmlns:foo="http://www.foo.com"> | |
<foo:bar>This should be green</foo:bar> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment