Next, I've always had this question I have this html structure
<!-- wrap1 -->
<div class="wrap">
<div class="filho">
(...)
</div>
</div>
<!-- wrap2 -->
<div class="wrap">
<div class="filho">
(...)
</div>
</div>
I know I can do this in other ways, but I'd like to know how I can select the .wrap .root (from the first) and get it to get the left margin and the .wrap .root (from the second) get margin right? The scenario is exactly that. Thanks to anyone who can clarify.