I need help with aligning the first "column" of spans to the right using only spans instead of divs. Here is the link to my fiddle: http://jsfiddle.net/f6a01v9a/1/
<h4>How to align first "column" of spans to the right?:</h4>
<span style="float: left; width: 100px">Title1:</span><span>456415446</span>
<br/>
<span style="float: left; width: 100px">Long Title2:</span><span>16546446</span>
<br/><br/><hr>
<h4>Example (UI only. Code is not right):</h4>
<span style="float: left; width: 64px; padding-left: 36px">Title1:</span><span>456415446</span>
<br/>
<span style="float: left; width: 100px">Long Title2:</span><span>16546446</span>
Can someone provide a solution for aligning the first "column" of spans to the right, regardless of text size?
Updated: Appreciate the help! The issue was simpler than I thought. I overlooked using text-align instead of just float.