I want to have a table containing rows and columns, and which can easily extend the number of rows - similar to a table in a word document. This isn't a form - just a set of text fields to display information, i.e. year, name, title etc.
I can replicate it by adding two or three text boxes next to each other, but I can't tab through the cells as I could with a table...
Thanks for any help.
How can I add a table to a page?
Here is a basic code for a table with two rows and two columns. The columns adjust automatically in size to the width of the page. Comments in () delete comments when using the code.
<table border="0" width="100%" >
<tr> (row one)
<td></td> (1st column)
<td></td> (2nd column)
</tr>
<tr> (second row)
<td></td>(1st column)
<td></td>(2nd column)
</tr>
</table>
<table border="0" width="100%" >
<tr> (row one)
<td></td> (1st column)
<td></td> (2nd column)
</tr>
<tr> (second row)
<td></td>(1st column)
<td></td>(2nd column)
</tr>
</table>
Just an FYI, content type cells of a web table are not tabable like a spreadsheet is. They contain data and that's pretty much it. There's no reason to tab through data since you're not entering anything.
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.