我有兩種css樣式,其中第二種只在第一種存在時才生效。我會怎麼做呢?我知道你可以爲一個類標籤添加多個類,但似乎沒有辦法以相同的方式嵌套css標籤。在同一類標記上的CSS嵌套規則
.stat{float: left; width: 200px; height: 40px; padding: 5px; margin: 5px; border: 1px solid #000;}
.stat .red{background-color: #c00;}
<!-- This should have the background color -->
<div class="stat red">
<!-- This should not have the background color -->
<div class="red">
<!-- This should not have the background color -->
<div class="stat">
'.stat.red'(no space) –