Need create table with fixed column. When set absolute position then cell with 'text1' don't have center vertical align. How to correct?
<style>
.th {
position: absolute;
left: 0; width: 300px;
}
.tbl{ margin-left: 305px;}
td{height:100px;width:200px; vertical-align: middle; text-align:center;}
</style>
<table class=tbl border=1 >
<tr >
<td class=th>text1</td>
<td>text2</td>
<td>text3</td>
<td>text4</td>
</tr>
</table>