电话
13363039260
类决议器可以疏散元素决议器来运用。
比喻,您梗概渴望只需段落展现为红色文本:
p.important {color:red;}
决议器其时会完婚 class 属性蕴含 important 的全部 p 元素,但是其它任何类型的元素都不匹配,不管可否有此 class 属性。决定器 p.important 告白为:“其 class 属性值为 important 的所有段落”。 因为 h1 元素不是段落,这个规定的抉择器和之不成婚,因此 h1 元素不会酿成红色文本。
假如你实在盼愿为 h1 元素指定不同的样式,可运用决议器 h1.important:
p.important {color:red;} h1.important {color:blue;}