I have the following html:
The output is not respecting the min-width values.
I have a jsfiddle that shows the results. Using Chrome, you should see the correct alignments.
https://jsfiddle.net/dxvxy9cm/
<style>
p { display:table; }
p span { display:table-cell; }
p span:nth-child(1) { min-width:1.5in }
p span:nth-child(2) { min-width:1.5in }
p span:nth-child(3) { }
</style>
<p>
<span>This is part 1.</span>
<span>This is part 2.</span>
<span>This is part 3.</span>
</p>
The output is not respecting the min-width values.
I have a jsfiddle that shows the results. Using Chrome, you should see the correct alignments.
https://jsfiddle.net/dxvxy9cm/