this is my code. I made those divs as table cell
<div class="logo">
text
</div>
<div class="stats" >
text
</div>
and my css
.logo
{
display:table-cell;
width:420px;
}
.stats
{
display:table-cell;
width:200px;
}
Is it possible to somehow align first div to the left and second one to the right without using float? Or just to align content inside them to the left and right?