View previous topic :: View next topic |
Author |
Message |
TRUSTAbyss -
Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
|
Posted: Tue Jun 08, 2004 9:02 pm Post subject: Need Help With Table ! |
|
|
Ok , here's what I need , I am no good at tables , thats why you
see my websites use no bordered frames for layout , how do you
create tables to look like frames , different lengths , I never really
understood how to make tables in my code , please help me!
I want a table to cover the exact
width and height of this frame.
http://os17fan.cjb.net/abyss2/ |
|
Back to top |
|
 |
Anonymoose -
Joined: 09 Sep 2003 Posts: 2192
|
Posted: Tue Jun 08, 2004 9:04 pm Post subject: |
|
|
You should really be looking at learning to use CSS as an alternative to frames and tables.
http://glish.com/css/ |
|
Back to top |
|
 |
TRUSTAbyss -
Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
|
Posted: Tue Jun 08, 2004 9:10 pm Post subject: |
|
|
Can you be generous and give me an example
on how to create the same layout as my website ? |
|
Back to top |
|
 |
Anonymoose -
Joined: 09 Sep 2003 Posts: 2192
|
|
Back to top |
|
 |
TRUSTAbyss -
Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
|
Posted: Tue Jun 08, 2004 11:27 pm Post subject: |
|
|
I think tables would take up less code , the smaller
the better , now someone please help me create a
table like I wanted in my original post , Please! |
|
Back to top |
|
 |
eznetlinks -
Joined: 27 Sep 2003 Posts: 144
|
Posted: Tue Jun 08, 2004 11:59 pm Post subject: |
|
|
All Tables start with <table> tag and end with </table>.
All Tables have a row using <tr> and </tr> tags.
All Tables have at least one cell using <td> and </td> tags.
A minimum Table is:
<table><tr><td>content</td></tr></table>
A Table width is set with width=% or pxl.
A Table border is set with border=#
Example:
<table width=90% border=1>
Cell width is set with colspan=% or pxl
Example:
<td colspan=15%>
Here is basicly what you asked for:
<table width=90% border=1>
<tr>
<td>hello
</td>
</tr>
</table>
<table width=90% border=1>
<tr>
<td colspan=15% valign=top>world<br><br>
</td>
<td colspan=85% valign=top>hello world
</td>
</tr>
</table>
Borders can be deleted, I just use for testing. valign=top in the <td> tag keeps content at the top of the cell.
This should help you figure out what you want.
GOOD LUCK! |
|
Back to top |
|
 |
iNaNimAtE -
Joined: 05 Nov 2003 Posts: 2381 Location: Everywhere you're not.
|
Posted: Wed Jun 09, 2004 12:15 am Post subject: |
|
|
Anonymoose wrote: | You should really be looking at learning to use CSS as an alternative to frames and tables. |
Why CSS? Tables seem to be a lot more popular... _________________ Bienvenidos! |
|
Back to top |
 |
 |
|