This problem is really bugging me. I've done my research and never had trouble with this before, but for some reason, I can't get the second div to display on the right side of the table cell. Any assistance would be greatly appreciated.
Here is how I marked it up:
<td>
<div class="sort">
<a href="#">ID</a>
<span class="icon1"></span>
</div>
<div class="divider icon2"></div>
</td>
And here is my CSS:
thead .sort a {
color: #fff;
float: left;
}
thead .sort {
float: left;
}
thead .divider {
float: right;
}
I feel like this is something simple that I'm just missing. Your help is much appreciated!
Thanks,