I noticed that the table cell vertical-alignment is not working when the position is set to absolute. Am I doing something wrong?
NON WORKING SAMPLE
<table>
<thead >
<tr>
<th rowspan="2" style="position:absolute; left:100px; height:200px; vertical-align:bottom; border:solid 1px #CCCCCC;">bottom alignament is not working</th>
<th style="position:absolute; left:400px;border:solid 1px #CCCCCC;"> a</th>
</tr>
<tr >
<th style="position:absolute; left:500px; border:solid 1px #CCCCCC;"> a</th>
</tr>
</thead>
</table>
The usual approach works fine
WORKING SAMPLE
<table style="border:solid 1px #CCCCCC">
<thead>
<tr>
<th rowspan="2" style="vertical-align:bottom; border:solid 1px #CCCCCC">bottom alignament ok</th>
<th > a</th>
</tr>
<tr>
<th > a</th>
</tr>
</thead>
</table>