Results 1 to 5 of 5

Thread: Table Beside a table

  1. #1
    Member
    Join Date
    Jul 2002
    Posts
    37

    Table Beside a table

    Hello po! I have seen sites such as newjersey.gov using table beside a table , I would like to ask how's it done? Anybody who are willing to answer my wuestion will be forever in my debt. Thank you. And one more thing how do I set up a basic webserver? I have P4 computer and a DSL connection will that be enough in setting up a webserver?

  2. #2
    Macht Nicht Aus moxnix's Avatar
    Join Date
    May 2002
    Location
    Huson Mt.
    Posts
    1,752
    Uuuhh.....do you know and understand HTML ? Most web sites, and thats what I believe you are talking about, are coded in HTML. Using this in the proper manner will allow you to place what ever graphics you like, any where on the page.
    As for setting up a web server.....what do you wish to use it for? To host your own web page? If so, then there is a simpler solution....use a web based service, some of which offer limited account for free and then charge for more expansive sites. If you wish you can even purchase your own domain.
    \"Life should NOT be a journey to the grave with the intention of arriving safely in an attractive and well preserved body, but rather to skid in sideways, Champagne in one hand - strawberries in the other, body thoroughly used up, totally worn out and screaming WOO HOO - What a Ride!\"
    Author Unknown

  3. #3
    Junior Member
    Join Date
    Mar 2004
    Posts
    11

    tables within a table?

    I think maybe what you're asking for is two tables within a table? It would look like two tables next to each other. The code below produces one big cell in each table, but you can add in more rows and cells as needed.

    <table> <!-- mommy table -->
    <table> <!-- left child -->
    <tr>
    <td>Here's table detail for left child.</td>
    </tr>
    </table> <!-- end left child -->
    <table> <!-- right child -->
    <tr>
    <td>Here's table detail for right child.</td>
    </tr>
    </table> <!-- end right child -->
    </table> <!-- end mommy -->

    Lisa

  4. #4
    Senior Member
    Join Date
    Jan 2002
    Posts
    227
    Peppers code is a little bit wrong. But only a little

    Here the corrected one:

    Code:
    <table> <!-- mommy table -->
       <tr>
          <td>
             <table> <!-- left child -->
                <tr>
                   <td>Here's table detail for left child.</td>
                </tr>
             </table> <!-- end left child -->
          </td>
          <td>
             <table> <!-- right child -->
                <tr>
                   <td>Here's table detail for right child.</td>
                </tr>
             </table> <!-- end right child -->
          </td>
       </tr>
    </table> <!-- end mommy -->
    Hope this helps And try to learn CSS instead od using table layout...
    http://promote.opera.com/small/opera94x15.gif

    [gloworange]Sun7dots[/gloworange]

  5. #5
    Junior Member
    Join Date
    Mar 2004
    Posts
    11
    Oh, my... I'm embarrassed. Thanks!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •