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
Printable View
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
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.
aah, man, u r like a life saver, that woulda took me hrs unless u or someone else had told me to that
so now i got 3 tables inside 1 large table
:confused: :confused: :confused: lol, thx anyway
www.manix-creations.net/home.php <--- Progress
Code:<table>
<tr>
<td>
<table> <--New Table
</table>
</td>
</tr>
</table>
ok, thx
now i got this
<table>
<tr>
<td>
<table>
</table>
</td>
<td>
<table>
</table>
</td>
<td>
<table>
</table>
</td>
</tr>
</table>
aww, man, i shoulda just left things alone, ... is all of html coding this complicated :confused: :confused: :( :( :confused: :confused:
HTML coding is simple!.
Think about it, you just need to open tag, but some **** and clsoe it..that's it :D
then u gotta know all the tags and what they do, u gotta actaully make something that actually looks nice ...
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>
You learning them 1 by 1 with the time :Quote:
Originally posted by Paxthegreat
then u gotta know all the tags and what they do, u gotta actaully make something that actually looks nice ...