Hi all,
This little issue is starting to do my head in, I have read around a lot and have never had an issue with this in the past but I cannot seem to get the second div to appear on the right side of the table cell, any help would be appreciated.
My Markup is
<td>
<div class="sort">
<a href="#">ID</a>
<span class="icon1"></span>
</div>
<div class="divider icon2"></div>
</td>
And my css is
thead .sort a {
color: #fff;
float: left;
}
thead .sort {
float: left;
}
thead .divider {
float: right;
}
I am expecting this is something simple or something I am just overlooking.
Thanks,