0
I can "skip the way css goes"?
Example:
<body>
<div class="a">
<ul class="b">
<li class="c">
Teste
</li>
</ul>
</div>
</body>
There for example, I want to get the li, but as it is "a lot", instead of doing this:
.a .b .c{
blablabla;
}
I can do that?
.a .c {
blablabla;
}
Yes you can, the spacing is not a path, it’s a rule and it works like "cascade"
– Guilherme Nascimento