5
如何选择具有特定类别的元素?
我的理解是,使用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 …