openstax / css-manipulate

Do more with CSS!
https://jsfiddle.net/philschatz/hjk2z4af/
5 stars 0 forks source link

support namespaced elements #7

Closed philschatz closed 6 years ago

philschatz commented 6 years ago
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:test="urn:test">
    <test:test>
        <test:a>Hello!</test:a>
    </test:test>
</html>
@namespace test "urn:test";
test|*::before {
  tag-name-set: div;
  content: "Hello!";
}
philschatz commented 6 years ago

duplicate of #6