View Full Version : why wont this work?


tkdgurl927
09-13-2004, 11:05 PM
hi i have this code to position my table, but it shows up on the bottom left of my layout....how can i fix this? thx


<table style="position: absolute; left: 500px; top: 200px;">
<table style="border: 1px dotted white;" bgcolor=pink cellspacing=1
cellpadding=1 valign=top width=140>
<td valign=top rowspan=2 width=200>
<font face="times new roman" color="black" size="2">
<center>
Browse
</center>
</font>
</td>
</table>
</table>

pb&j
09-14-2004, 06:10 AM
try this...

<table style="position: absolute; left:500px; top:200px; border:1px dotted white; background-color:pink; width:140px;" cellspacing="1"
cellpadding="1">
<tr>
<td style="vertical-align:top; font-size:10px; font-family: times new roman; color:#000000; text-align:center;">
Browse
</td>
</tr>
</table>