3
Hello, because this attribute using 2 words does not catch, and what I use only 1 word catches
<li data-nome="testejunto">Teste</li>
Catching example:
.item[data-nome=testejunto] {
background: black;
height: 100px;
width: 120px;
}
Example that does not take
.item[data-nome=teste separado] {
background: black;
height: 100px;
width: 120px;
}