Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Table or Panels?

Status
Not open for further replies.

jgoodman00

Programmer
Jan 23, 2001
1,510
In the standard web page layout of a header bar along the top, menu bar on the left, content in the middle & footer bar along the bottom what is the preffered method of implementing this?

I currently use tables to position objects where I want them, but I am not sure if this is the best practice?

e.g.
Code:
<Table1>
  <tr>
    <td>MainMenu</td>
    <td>
      <Table2>
        <tr>HeaderBar</tr>
        <tr>MainContent</tr>
        <tr>FooterBar</tr>
      </Table>
    </td>
  </tr>
</Table>

Also, I currently copy these table objects manually into each page & then include my commonly used control objects (such as menu bar etc), before designing each page.
Is this the best practise, or is there a better way of doing this?

James Goodman MCSE, MCDBA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top