would like the same result however i wish for it to be only 1 table. <table border=1 width="100%" height="130"> <tr> <td> </td> </tr> </table> <table border=1 height="100%" width=130> <tr> <td> </td> </tr> </table> HTML:
You're better off using <div> tags. <div style="width:100%;height:130px;border:1px;"> <div style="width:130px;height:100%;border:1px;"> Some browsers doesn't support height:100% so what you can do is set the heigh of your HTML document to 100% i think that should do the trick. But try it out respond here on how it works for you...
If you're going to make two equal sized rows why not just use one table that houses two rows? But as forementioned, you would be better off with CSS and DIV.
i have absolutely no idea what the code does. one having 130px width and 100% height and the other vice versa. what is this?
So you're wanting a 2 column layout using a table with the left column being 130 px? Here's the code for that with a header and a footer. <table width="100%" border="0"> <tr> <td colspan="2"> </td> </tr> <tr> <td width="130"> </td> <td> </td> </tr> <tr> <td colspan="2"> </td> </tr> </table> Code (markup): Here's the code for 3 columns with a header and a footer <table width="100%" border="0"> <tr> <td colspan="3"> </td> </tr> <tr> <td width="130"> </td> <td> </td> <td width="130"> </td> </tr> <tr> <td colspan="3"> </td> </tr> </table> Code (markup):
I was thinking that he might want to make it look like a frame, a "L" shaped frame and then put the content in the rest of the space *Hint Hint, if that wasn't the original idea, it might be a good idea design wise *