I need help with html tables?
i am trying to make a table with 2 main rows. the top row has no columns and the bottom row has 5. the top row is also 75% of the height of the table...
code please?
please only answer this question if u actually know what ur talking about.. thanks to those who already attempted to answer this.. but all of them pretty much were completely off...
Public Comments
- <table width="xxx" height="xxx"> <tr height="75%"> </tr> <tr> <td>column 1</td> <td>column 2</td> <td>column 3</td> <td>column 4</td> <td>column 5</td> </tr> </table>
- you might wanna try the tutorial on lissaexplains.com i think you might be looking for this though... <table border=0 cellspacing=0 cellpadding=0 height=100%> <tr height=75%><Td>text</td</tr> <tr height=25%><td>text></td><td>text></td><td>text></td><td>text></td><td>text></td> </tr></table>
- <table border="1" width="100%" height="50%"> <tr height="75%"> <td colspan="5"></td> </tr> <tr height="25%"> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> </table> This is a table of two rows the 1st with no columns and it's 75% height of the whole table and 2nd row is 25% height with 5 columns inside it. Please informe me if you need more
Powered by Yahoo! Answers