Hi,
I have this following HTML:
...
<td>
<div style="position: relative; top:0;"></div>
<div style="position: relative; top:20px;"></div>
<div style="position: relative; top:40px;"></div>
</td>
...
In this case the top value is counted from each div. I need it so that the top value is counted from <td> top, not the previous div as it makes an extra gap between each div. What's the best way to complete this?
Thanks