Entmoot
 


Go Back   Entmoot > Other Topics > General Messages
FAQ Members List Calendar

Reply
 
Thread Tools Display Modes
Old 03-06-2004, 07:25 AM   #1
Grey_Wolf
Elf Lord
 
Grey_Wolf's Avatar
 
Join Date: Mar 2002
Location: Mirkwood, well actually I live in North-west Scania, Sweden
Posts: 9,481
Table-samples - PUT THEM IN A ROW?

Is it possible? Or does one have to put all three in a separate table to make them line up in one row? (I'm reading my HUGE book on HTML and have come to tables).

<html>
<head><title> Tables </title></head>
<body>
<table>
<caption> A Simple table </caption>
<tr> <td> X </td> <td> X </td> <td> X </td> </tr>
<tr> <td> X </td> <td> X </td> <td> X </td> </tr>
<tr> <td> X </td> <td> X </td> <td> X </td> </tr>
</table>
<table>
<caption> A tableheaded table </caption>
<tr> <th> Col 1 </th> <th> Col 2 </th> <th> col 3 </th> </tr>
<tr> <td> X </td> <td> X </td> <td> X </td> </tr>
<tr> <td> X </td> <td> X </td> <td> X </td> </tr>
<tr> <td> X </td> <td> X </td> <td> X </td> </tr>
</table>
<table border="3">
<caption> A bordered table </caption>
<tr> <th> Col 1 </th> <th> Col 2 </th> <th> col 3 </th> </tr>
<tr> <td> X </td> <td> X </td> <td> X </td> </tr>
<tr> <td> X </td> <td> X </td> <td> X </td> </tr>
<tr> <td> X </td> <td> X </td> <td> X </td> </tr>
</table>
</body>
</html>
Grey_Wolf is offline   Reply With Quote
Old 03-06-2004, 10:12 AM   #2
jerseydevil
I am Freddie/UNDERCOVER/ Founder of The Great Continent of Entmoot
 
jerseydevil's Avatar
 
Join Date: Dec 2001
Location: Plainsboro, NJ
Posts: 9,431
Give an example of what you are looking for.
__________________
Come back! Come back! To Mordor we will take you!

"The only thing better than a great plan is implementing a great plan" - JerseyDevil

"If everyone agreed with me all the time, everything would be just fine"- JerseyDevil

AboutNewJersey.com
New Jersey MessageBoard
Another Tolkien Forum

Memorial to the Twin Towers
New Jersey Map
Fellowship of the Messageboard
Legend of the Jersey Devil
Support New Jersey's Liberty Tower
Peacefire.org

AboutNewJersey.com - New Jersey
Travel and Tourism Guide

jerseydevil is offline   Reply With Quote
Old 03-06-2004, 10:14 AM   #3
Grey_Wolf
Elf Lord
 
Grey_Wolf's Avatar
 
Join Date: Mar 2002
Location: Mirkwood, well actually I live in North-west Scania, Sweden
Posts: 9,481
Like this

table 1 table 2 table 3

not as it was shown on sample page

table1

table 2

table 3


(btw have you had any opportunity at taking a look at my attempted guestbook addition?)

Last edited by Grey_Wolf : 03-06-2004 at 10:17 AM.
Grey_Wolf is offline   Reply With Quote
Old 03-06-2004, 10:31 AM   #4
jerseydevil
I am Freddie/UNDERCOVER/ Founder of The Great Continent of Entmoot
 
jerseydevil's Avatar
 
Join Date: Dec 2001
Location: Plainsboro, NJ
Posts: 9,431
Quote:
Originally posted by Grey_Wolf
Like this

table 1 table 2 table 3

not as it was shown on sample page

table1

table 2

table 3
The way you do that is have a table within a table.
Code:

<html>
<head><title> Tables </title></head>
<body>
<table>
  <tr>
    <td>
       <table>
           <caption> A Simple table</caption>
           <tr> <td> X </td> <td> X </td> <td> X </td> </tr>
            <tr> <td> X </td> <td> X </td> <td> X </td> </tr>
            <tr> <td> X </td> <td> X </td> <td> X </td> </tr>
        </table>
    </td>
    <td>
       <table>
           <caption> A tableheaded table</caption>
           <tr> <th> Col 1 </th> <th> Col 2 </th> <th> col 3 </th> </tr>
           <tr> <td> X </td> <td> X </td> <td> X </td> </tr>
           <tr> <td> X </td> <td> X </td> <td> X </td> </tr>
           <tr> <td> X </td> <td> X </td> <td> X </td> </tr>
       </table>
     </td>
     <td>
       <table border="3">
            <caption> A bordered table</caption>
            <tr> <th> Col 1 </th> <th> Col 2 </th> <th> col 3 </th> </tr>
            <tr> <td> X </td> <td> X </td> <td> X </td> </tr>
            <tr> <td> X </td> <td> X </td> <td> X </td> </tr>
            <tr> <td> X </td> <td> X </td> <td> X </td> </tr>
       </table>
    </td>
  </tr>
</table>
</body>
</html>
Quote:

(btw have you had any opportunity at taking a look at my attempted guestbook addition?)
i haven't yet - I was out all day yesterday and then I was working on my website. I'll take a look at it though.
__________________
Come back! Come back! To Mordor we will take you!

"The only thing better than a great plan is implementing a great plan" - JerseyDevil

"If everyone agreed with me all the time, everything would be just fine"- JerseyDevil

AboutNewJersey.com
New Jersey MessageBoard
Another Tolkien Forum

Memorial to the Twin Towers
New Jersey Map
Fellowship of the Messageboard
Legend of the Jersey Devil
Support New Jersey's Liberty Tower
Peacefire.org

AboutNewJersey.com - New Jersey
Travel and Tourism Guide


Last edited by jerseydevil : 03-06-2004 at 10:34 AM.
jerseydevil is offline   Reply With Quote
Old 03-06-2004, 10:33 AM   #5
Grey_Wolf
Elf Lord
 
Grey_Wolf's Avatar
 
Join Date: Mar 2002
Location: Mirkwood, well actually I live in North-west Scania, Sweden
Posts: 9,481
I sent you a pm about my difficulties in updating and saving changes on my pages (can't figure out how to do that). Where to save the changed page and all that.
Grey_Wolf is offline   Reply With Quote
Old 03-06-2004, 10:36 AM   #6
Grey_Wolf
Elf Lord
 
Grey_Wolf's Avatar
 
Join Date: Mar 2002
Location: Mirkwood, well actually I live in North-west Scania, Sweden
Posts: 9,481
Quote:
Originally posted by jerseydevil
[B]The way you do that is have a table within a table.
[code]
Thanks. Now I know how to do that.
Grey_Wolf is offline   Reply With Quote
Reply



Posting Rules
You may post new threads
You may post replies
You may post attachments
You may edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Visitors Come to Court Valandil Writer's Workshop 56 01-27-2010 11:29 AM
Biographical/narrative writing samples Mercutio Writer's Workshop 0 11-16-2005 09:43 PM
Why you believe what you believe I RĂ­an General Messages 1173 02-01-2005 03:56 PM
Legalization of Drugs Debate Ragnarok General Messages 62 07-23-2004 04:15 PM
Robin Hood and the Knights of the Round Table Fat middle Lord of the Rings Movies 5 11-17-2000 03:59 AM


All times are GMT -4. The time now is 12:06 PM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
(c) 1997-2019, The Tolkien Trail