In my web application, I have a toolbar, this is a div:
The div has 3 spans. The contents of the three intervals are filled in later.
And the size of the individual intervals varies each 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 the space "ab1" to be placed on the left, "ab2" and "ab3" on the right side on the div.
Is this possible WITHOUT float right / left?
source
share