0

i want to add the margin property to the div of class="first" that is followed by a div of class="note".

I have tried below

div.first + div.note {
      margin: 20px;
  }
<div class="root">
    <div class="first">
        first
    </div>
    <div class="note">
        note
    </div>
</div>

    

But this adds margin to note div but wanted it for first div. How could i change it to add it to the div with class first. could someone help with this. thanks.

Prateik Darji
  • 2,297
  • 1
  • 13
  • 29
someuser2491
  • 1,848
  • 5
  • 27
  • 63

0 Answers0