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,227
  • 1
  • 11
  • 27
someuser2491
  • 1,418
  • 3
  • 13
  • 41

0 Answers0