In my web app I have a toolbar, it’s a div:
The div has 3 spans. The contents of the 3 spans get filled later.
And the size of the individual spans differ every time.
<div>
<span id="ab1" style="display: inline-block;"></span>
<span id="ab2" style="display: inline-block;"></span>
<span id="ab3" style="display: inline-block;"></span>
</div>
Now, I want, that span “ab1” should be placed on the left, “ab2” and “ab3” on the right
side on the div.
Is this possibe WITHOUT float right/left?
Use
position:absoluteandtext-align:rightCSS
DEMO