I just saw this: *|*:link with Firebug. It seems to be some default styling which Firefox appends, but what does *|* mean?
|
|
|||||
|
|
It means "all elements in all namespaces that are |
||||
|
|
|
As mentioned, the selector
CSS has a module dedicated to namespace declarations. The document type determines what kind of elements should be designated as hyperlinks:
Note that CSS namespaces are only useful when using CSS to style XML documents, or other document types that define namespaces similarly. This includes XHTML pages with custom XML namespaces. In regular HTML documents there is usually no need to use namespaces prefixes in selectors. That said, browsers declare a default namespace in their user agent stylesheets that corresponds to XHTML for HTML/XHTML anyway, to allow interoperability with other XML-based languages. In the case of Firefox, this is obviously for working with both XHTML and XUL:
Since (X)HTML elements live in the default namespace, selectors for matching just these elements don't need to be namespace-prefixed. This is the technical reason why, as I mention above, there's no need to use namespace prefixes in selectors. Note also that if you want to target any element type with a namespace prefix, the |
||||
|
|