Posted by oeb on 04/13/06 13:32
Allison McGhee wrote:
> I messed up this question what I meant to say was How can I do the
> equivalent of
> <table>
> <tr>
> <td valign="center>Img</td>
> <td valign="center">Header</td>
> </tr>
> </table>
>
> Sorry for the mistake
> A
>
>
vertical-align:middle;
or in full
*CSS*
#mytable td {vertical-align:middle;}
*HTML*
<table id="mytable">
<tr>
<td valign="center>Img</td>
<td valign="center">Header</td>
</tr>
</table>
Navigation:
[Reply to this message]
|