Is there a way to align text on the left and right side of the same line?
I experimented with various solutions for non-Unicode text that I found here. However, when it comes to Unicode text, the two parts of the text do not align vertically:
https://i.sstatic.net/r9HUF.png
<div style="width: 70px;">
<span style="float: left;">foo</span>
<span style="float: right;">foo?</span>
</div>
<br><br>
<div style="width: 70px; display: flex; justify-content: space-between;">
<span>foo</span>
<span>foo?</span>
</div>