A 型选择相匹配的文档语言元素类型的名称。 一个类型选择文档树的元素类型的每一个实例相匹配。 例如:
/* The following rule matches all H1 elements
in the document tree: */
h1 { font-family: sans-serif; }
ID选择基于其独特的标识符的元素实例相匹配。
/* The following rule matches the element whose
ID attribute has the value "header": */
#header { text-align: center; }
类选择匹配
/* The following rule matches all elements
with class "money": */
.money { color: green; }
选择器可以在CSS组合:
h1#chapter1 { font-size: 32px; text-align: center }
p#chapter1.intro { text-align: left }
p.ending { font-style: italic; }
#login.disabled { color: #f00; }
我的问题是,什么是浏览器支持(IE6及以上)为组合式,ID和类选择?