there is a block inside of which there are two blocks of the same name, only one is directly inside the parent, and the second has several more wrappers. How to apply the style only to the child "son"?
.cild { background: #CDDC39; display: inline-block; margin: 5px; padding: 5px; } <div class='parrent'> <div class='cild'>сын</div> <div class='folder'> <div class='cild'>внук</div> </div> </div>