Can a CSS guru help me out?
I want to show the current speed in the center of the screen. This works fine without a postfix, but as soon as I add a postfix, the speed fields shifts slightly to the left because both <span> elements are centered together.
How do I center the first <span> element and put the postfix right of it?
<div class="sp-d-s p-hc" style="top:calc(87% - 50%e)">
<span>
<eval input="/Activity/Current/Speed" outputFormat="{zapp_speed_format}" default="--" />
</span>
<span class="cm-mid sp-t-s" style="padding-top:6px; padding-left:4px">
<postfix />
</span>
</div>