1
When we want to modify a div, and it has such a class, it’s easy.
.umaclass{
/*Formatação*/
}
But let’s assume that I want to take a div that does not have such a class, without modifying the ones that have the class... How do I?
For example:
I have several Ivs with the same class, testing 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 test class?
Thank you, Artur, what I wanted to do, with the not worked!
– Lucas de Carvalho
@Lucascarvalh :)
– Artur Trapp