我有两种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">