if anything, i was thinking something along the lines of:
CODE
<style>
.foo td div {
text-align: right;
position: relative;
top: 0px; left: 0px;
}
</style>
.foo td div {
text-align: right;
position: relative;
top: 0px; left: 0px;
}
</style>
CODE
<table id="foo">
<tr>
<td><div>Lorem</div></td>
<td>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce at turpis ut est convallis lobortis. Suspendisse potenti. Nunc ut felis.</td></tr>
<tr>
<td><div>Lorem</div></td>
<td>Fusce at turpis ut est convallis lobortis.</td></tr>
<tr>
<td><div>Lorem</div></td>
<td>Fusce at turpis ut est convallis lobortis.</td></tr>
</table>
<tr>
<td><div>Lorem</div></td>
<td>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce at turpis ut est convallis lobortis. Suspendisse potenti. Nunc ut felis.</td></tr>
<tr>
<td><div>Lorem</div></td>
<td>Fusce at turpis ut est convallis lobortis.</td></tr>
<tr>
<td><div>Lorem</div></td>
<td>Fusce at turpis ut est convallis lobortis.</td></tr>
</table>
basically, when the text wraps in an adjacent <td>, i want the text in the smaller <td> to remain at the top, and not in the vertical center, as it is by default.
the problem is, the solution seems a little bloated. is there a more elegant way to do this, now that valign is deprecated?