I lost track of which margin was doing what so I reset all my top/bottom margins. What is the best method to cleanly add consistent margins throughoutyour work? Is it best to target a certain element in order to use the least css i.e
<div id="one"></div>
<div id="two"></div>
<div id="three"></div>
Is it best to target #2 and add top/bottom margin instead of adding bottom margin to #one & #two.
I’m sure I have had loads of overlapping margins in my CSS which probably equate to more than the margin i wanted.
Thanks