我的理解是,使用 element.class
应该允许分配给类的特定元素与类的其他元素接收不同的“样式”。这不是关于是否应该使用这个选择器的问题,而是我试图理解这个选择器是如何工作的。从网上大量的例子来看,我相信语法是正确的,不明白为什么这样不行。
这里有一个例子:
CSS:
h2 {
color: red;
}
.myClass {
color: green;
}
h2.myClass {
color: blue;
}
HTML:
<h2>This header should be RED to match the h2 element selector</h2>
<div class="myClass">
<h1>This header should be GREEN to match the class selector</h1>
<h2>This header should be BLUE to match the element.class selector</h2>
</div>