![]() |
|
Welcome to the UndergroundScene Forums forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
gimp
Join Date: Aug 2001
Location: Scotland
Posts: 13,998 Band: A band of merry men
![]() |
ok, the following code should help you understand tables and everything that goes along with them...
<table> //starts the html code for a table <tr> //starts a new row <td> //creates a cell in the row <p>this is table cell 1 in top row </td> //closes a cell in the row <td> //creates a cell in the row <p>this is table cell 2 in top row </td> //closes a cell in the row </tr> //end the current table row <tr> //starts a new row <td> //creates a cell in the row <p>this is table cell 1 in second row </td> //closes a cell in the row <td> //creates a cell in the row <p>this is table cell 2 in second row </td> //closes a cell in the row </tr> //end the current table row </table> //end tag for ending the table code
__________________
This community cannot survive without your continued support. galleries || links directory || profiles || wiki |
|
|
|
|
|
#2 (permalink) |
|
gimp
Join Date: Aug 2001
Location: Scotland
Posts: 13,998 Band: A band of merry men
![]() |
this next section of code allows you to modify the way a table looks.
The following table has a border of 0 thickness. i.e. no border at all, it has a width of 400 pixels and a hieght of 90%. all measurements can be in pixels or percentages. Percentages are more flexible, but for a rigid table, use set pixel sizes. The same rules apply for cell properties as is show bellow. Try copying and pasting the code here and above into a html document and see what happens. <table border="0" width="400" height="90%"> <tr> <td width="50%" height="50%"></td> <td width="50%" height="50%"></td> </tr> <tr> <td width="200" height="50%"></td> <td width="200" height="50%"></td> </tr> </table> <small>[ 16 July 2002, 03:13 AM: edited by: KJ. ]</small>
__________________
This community cannot survive without your continued support. galleries || links directory || profiles || wiki |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|