Hi,
I have an absolutaly positioned TD and vertical-align, valign nothing works to make text vertically aligned in middle except padding. If TD is not absolutaly aligned then there is no problem. Is there any other way than using padding to vertically align the text?
Thanks in advance.
Can refer this sample code.
[codes]
<html>
<body>
<table width="200px" height="200px">
<tr width="100%" height="100px">
<td width="100%" height="100%" style="position:absolute;top:200;left:400;border:1px solid black;vertical-align:middle" valign="center">
HI
</td>
</tr>
<tr width="100%" height="100px">
<td width="100%" height="100%" style="border:1px solid black">
Hello
</td>
</tr>
</table>
</body>
</html>
[/codes]