Forget my previous example. This example will give you absolute tab stops, relative to the left margin.
Code:
.indent1 { position:absolute; left:10em; }
.indent2 { position:absolute; left:20em; }
Code:
<p>Some text<span class="indent1">indented text</span><span class="indent2">another indent</span></p>
<p>Another line of text<span class="indent1">more indented text</span><span class="indent2">another indent</span></p>
<p>Even more text<span class="indent1">even more indented text</span><span class="indent2">another indent</span></p>
Joe