TwinklzD
12-10-2004, 10:32 PM
how do you know how big to make the cell padding, cell spacing and width ad all that? how big is one, two and three???? how would u usue tables to make a webpage layout?????? thanks...
|
View Full Version : width and spacing TwinklzD 12-10-2004, 10:32 PM how do you know how big to make the cell padding, cell spacing and width ad all that? how big is one, two and three???? how would u usue tables to make a webpage layout?????? thanks... Chris 12-10-2004, 10:51 PM You would just have to fiddle about, chaning the attributes of each one until it looks like you want it to. Chris db1games 12-11-2004, 08:51 AM how would u usue tables to make a webpage layout?????? If you want a site with, for example, a header at the top, a nav bar down the left and the content down the right, you would go: <table> <tr> <td colspan="2">header image or whatever goes in here</td> </tr> <tr> <td>nav bar stuff goes in here</td> <td>main content goes in here</td> </tr> </table> you can also do this using frames (which means that you will be able to scroll down different frames seperately so the nav bar would always be on the left of the screen and the header would always be at the top of the screen), but it is harder and there are a couple of problems with this approach too. |