Text inside table

Discussion in 'HTML & Website Design' started by tigersoft, Nov 18, 2006.

  1. #1
    How i can set text inside table to get top left? when used width and height.
    <table width="50%" border="1">
      <tr>
        <td width="300" height="300"><p>Test</p>
        </td>
        <td >&nbsp;</dh>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
    </table>
    Code (markup):

     
    tigersoft, Nov 18, 2006 IP
  2. webfinity

    webfinity Peon

    Messages:
    71
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #2
    <td width="300" height="300" valign="top" align="left"><p>Test</p>
    </td>
     
    webfinity, Nov 18, 2006 IP