css:element.class.class - 这是什么意思?

时间:2011-06-14 22:27:04

标签: css css-selectors

以下是代码段:

div.note.note_expanded

这是什么意思?我理解div.className,但第二个点是什么?

3 个答案:

答案 0 :(得分:8)

同时具有课堂笔记和note_expanded的div

<div class='note note_expanded'>这样的东西会匹配。

答案 1 :(得分:2)

这会定位div,其.note类和.note_expanded类。

<div class="note note_expanded">I'm special!</div>

答案 2 :(得分:1)

<style>
div.note.note_expanded {
  color:blue;
}
div.note {
  color:red;
}
div.note_expanded {
  color:black;
}
</style>
<div class='note note_expanded'> 
This is blue but I would think there must be an easier way.
</div>