【CSS同时选择器】
同一个div拥有多个class时,我们可以作多个class作为组合来选择对象。方法就是将多个.className直接连接在一起(中间不能有空格)。
<p class="important urgent warning">
This paragraph is a very important and urgent warning.
</p>
.important.urgent {background:silver;}
【CSS同时选择器】
同一个div拥有多个class时,我们可以作多个class作为组合来选择对象。方法就是将多个.className直接连接在一起(中间不能有空格)。
<p class="important urgent warning">
This paragraph is a very important and urgent warning.
</p>
.important.urgent {background:silver;}