Html table driving me crazy

Closed
Blocked Profile - Feb 22, 2008 at 05:54 AM
great_0 Posts 9 Registration date Thursday February 21, 2008 Status Member Last seen May 17, 2009 - Feb 22, 2008 at 06:49 AM
Hello everyone,

html table is driving me crazy, what i want to do, is to have the table to fit the screen and also i want my links to be on the left, the content in the middle and on the right another bunch of links. I'm new to html and i don't know how to achieve this.

Any help would be appreciated.
Related:

3 responses

Tracynet Posts 5 Registration date Thursday February 21, 2008 Status Member Last seen September 9, 2008
Feb 22, 2008 at 06:03 AM
hi if you want your table to fit the screen, then all you have to do is to set the width of your table to 100%, for the height, just use CSS to achieve it. I'm new to this also but i know that setting the width to 100% will achieve this

Cheers
0
Net4me Posts 5 Registration date Thursday February 21, 2008 Status Member Last seen August 1, 2008 4
Feb 22, 2008 at 06:15 AM
i'll try to help, first set the width to 100%. so your code will actually look like this

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
      <td>My html table is set to fit the screen</td>
</tr>
</table>


This little block of code will set the width to fit the screen. Now, if you want to have the content to the left, middle and to the right, the trick behind this is to use nested table. If you have problem with it, let me know!
0
great_0 Posts 9 Registration date Thursday February 21, 2008 Status Member Last seen May 17, 2009 1
Feb 22, 2008 at 06:49 AM
Some good places to start with ;p, follow the links below

http://www.w3schools.com</code>

http://www.html.net</code>


gotoAndLearn my friend!
0