类型选择器匹配文档语言元素类型的名称。类型选择器匹配文档树中元素类型的每个实例。例如:
/* 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; }
我的问题是,组合类型,ID和类选择器的浏览器支持(IE6及更高版本)是什么?
答案 0 :(得分:3)
现代使用的每个浏览器都支持所有给定的选择器组合。包括IE6 +。
IE6解析时唯一的问题是组合类选择器:
.class1.class2
它读取链中的最后一个类(在这种情况下为.class2
),从而使其匹配任何元素至少与最后一个类匹配。可以在this other answer中找到插图。
答案 1 :(得分:0)
这个问题的答案: Combining a Class selector with an ID
...似乎表明#id.class在IE6中不起作用