Jump to content

Help Needed....


Guest akaash19

Recommended Posts

Guest akaash19

HELLO FRNS..I NEED UR HELPI WANT TO ALIGN TABLE AT TOP INSIDE ANOTHER TABLE.PLEASE TELL ME HOW TO DO IT.I can align at center and left,right but not at top :) BELOW IS THE CODE:<html><body><table bgcolor="#FFDAB9" width="400" height="400" border="2"><tr><td> <table align="center" bgcolor="yellow" width="120" height="200" border="1"> <tr><td>table inside aother table</td></tr> </table> </td></tr> </table> </body></html>

Link to comment
Share on other sites

Guest sleepless_night

<html><body><table bgcolor="#FFDAB9" width="400" height="400" border="2"><tr><td valign="top"><table align="center" bgcolor="yellow" width="120" height="200" border="1"><tr><td>table inside aother table</td></tr></table> </td></tr> </table> </body></html>

Link to comment
Share on other sites

Or like this if you'd do Xhtml:

<html><body><table style="background-color:#FFDAB9; width:400px; height:400px; border:solid 2px #000000"><tr><td style="vertical-align:top"><table align="center" bgcolor="yellow" width="120" height="200" border="1"><tr><td>table inside aother table</td></tr></table> </td></tr> </table> </body></html>
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...