|
-
May 24th, 2002, 03:18 PM
#1
Thread Starter
Lively Member
n00b table question
in html how do u make more than 1 table be side by side
ie
"Table 1" "Table 2" "Table 3"
rather than
"Table 1"
"Table 2"
"Table 3"
also i need this code as simple as possible, as "I" need to be able to understand it
thx
-
May 24th, 2002, 03:27 PM
#2
Frenzied Member
Ugly HTML tricks: Put the tables in a table.
Elegant, and correct ways: Try 'float'ing the tables. They should line up side by side in the container they are in. It requires CSS or inline style. I'm sure there are dozens of other ways. Absolute positioning comes to mind.
Travis, Kung Foo Journeyman
As always, RTFM.
WWW Standards: HTML 4.01, CSS Level 2, ECMA 262 Bindings to DOM Level 1, JavaScript 1.3 Guide and Reference
Perl: Learn Perl, Llama, Camel, Cookbook, Perl Monks, Perl Mongers, O'Reilly's Perl.com, ActiveState, CPAN, TPJ, and use Perl;
YBMS, but Mozilla doesn't.
-
May 24th, 2002, 03:48 PM
#3
Thread Starter
Lively Member
-
May 24th, 2002, 05:03 PM
#4
Code:
<table>
<tr>
<td>
<table> <--New Table
</table>
</td>
</tr>
</table>
-
May 25th, 2002, 03:58 AM
#5
Thread Starter
Lively Member
-
May 25th, 2002, 06:17 AM
#6
HTML coding is simple!.
Think about it, you just need to open tag, but some **** and clsoe it..that's it
-
May 25th, 2002, 07:29 AM
#7
Thread Starter
Lively Member
then u gotta know all the tags and what they do, u gotta actaully make something that actually looks nice ...
-
May 25th, 2002, 06:18 PM
#8
it's not hard
<table align=left border=1>
<tr>
<td> </td>
</tr>
</table>
<table align=center border=1>
<tr>
<td></td>
</tr>
</table>
<table align=right border=1>
<tr>
<td></td>
</tr>
</table>
-
May 26th, 2002, 01:29 AM
#9
Originally posted by Paxthegreat
then u gotta know all the tags and what they do, u gotta actaully make something that actually looks nice ...
You learning them 1 by 1 with the time :
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|