How to apply a CSS configuration only when a tag has the name1 and name2 classes at the same time?
I tried with the following code, but it is not working. Does anyone know how to do it?
.nome1 {
color: black;
}
.nome2 {
color: blue;
}
.nome3 {
color: green;
}
.nome1 .nome2 {
color: red;
font-size: 18pt;
}
<div class="nome1">
Nome1
</div>
<div class="nome2">
Nome2
</div>
<div class="nome3">
Nome3
</div>
<div class="nome1 nome2">
Nome1 e Nome2
</div>