@namespace

This rule(3rd) should be declared after any @charset(1st) and @import(2nd) rules.


@namespace url(http://www.w3.org/1999/xhtml);
@namespace svg url(http://www.w3.org/2000/svg);
@namespace mathml url(http://www.w3.org/1998/Math/MathML);

/* This matches all XHTML <a> elements, as XHTML is the default unprefixed namespace */
a {}

/* This matches all SVG <a> elements */
svg|a {}

/* This matches both XHTML and SVG <a> elements */
*|a {}