I am using SCSS for the style sheet and I am just getting used to it.
Would like to get a little suggestion on the following scenario.
Say I got three div tags with following in-line params,
<div style="margin-top:10px">....</div>
<div style="margin-top:-10px">....</div>
<div style="margin-top:30px">....</div>
Now I could create 3 CSS class style with different values to avoid in-line css.
However is there a way I could create a single class as margin-top and pass the values 10px , -10px and 30px for each div.