When we want to modify a div, and it has a class such, it is easy.
.umaclass{
/*Formatação*/
}
But let's suppose I want to get a div that does not have such a class, without modifying the ones that have the class ... How do I do?
For example:
I have several divs with the same class, test and testing :
<div class="teste testando"></div>
<div class="teste testando"></div>
<div class="teste testando"></div>
<div class="teste"></div> //SOMENTE ESSA SER MODIFICADA, SEM MODIFICAR AS OUTRAS
But I want to modify only the test class but without modifying the ones that have the class testing how do I do this?