Hello,
So why use a more precise selector like in this example :
<div class="Grand-parent">
<div class="parent1">
<input class="address">
<input class="address_city">
<input class="country">
</div>
<div class="parent2">
<input class="name">
<input class="mail">
<input class="password">
</div>
</div>
In this kind of situation, your
selector can be write like this :
div.Grand-parent div.parent2 input {
CSS COMMAND: VALUE
}
This kind of way to create your selector able you to add a Css command
ONLY on input displaying
in div.parent2.
Hope this will help you
Regards