A type selector matches the name of a document language element type. A type selector matches every instance of the element type in the document tree. For example:
/* The following rule matches all H1 elements
in the document tree: */
h1 { font-family: sans-serif; }
An ID selector matches an element instance based on its unique identifier.
/* The following rule matches the element whose
ID attribute has the value "header": */
#header { text-align: center; }
A class selector matches
/* The following rule matches all elements
with class "money": */
.money { color: green; }
Selectors can be combined in CSS:
h1#chapter1 { font-size: 32px; text-align: center }
p#chapter1.intro { text-align: left }
p.ending { font-style: italic; }
#login.disabled { color: #f00; }
My question is, what is browser support (IE6 and up) for the combined type, ID, and class selector?