Ich sehe den schlichten Hinweis auf die Lösungsquelle i.d.R. ja auch besser an, als jemandem die fertige Lösung vor die Füße zu werfen, aber ich komme so einfach nicht weiter :)
Hier mein "neuster" Versuch - ausschließlich mit CSS-Eigenschaften:
<html>
<head>
<title>Test</title>
<style type="text/css">
table { width:210; }
td { border:1px solid #000; vertical-align:top; }
.tst { width:60px;font-size:8 }
.tst2 { width:110px; }
.tst3 { width:40px; }
</style>
</head>
<body>
<table>
<tr>
<td class="tst">
0,
</td>
<td class="tst2">
59
</td>
<td class="tst3">
EUR
</td>
</tr>
</table>
<table>
<tr>
<td class="tst">
0,
</td>
<td class="tst2">
59001235
</td>
<td class="tst3">
EUR
</td>
</tr>
</table>
</body>
</html>
Ich bekomme die immer noch nicht untereinander angezeigt :(