Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inner Tables

Status
Not open for further replies.

dagoat10

Programmer
Jun 3, 2010
74
US
is there a way to setup a table with 2 inner tables

like this:

Code:
<table>
<form>
<tr>
<td>
<table>
//some code here
</table>
</td>
</tr>

<tr>
<td>
<table>
//some other code here
</table>
</td>
<tr>
</form>
</table>

What should i do.
 
is there a way to setup a table with 2 inner tables
Yes - just like you're doing
What should i do.

What are you trying to do?

Greg
People demand freedom of speech as a compensation for the freedom of thought which they seldom use. Kierkegaard
 
Note that the placement of the <form> element is invalid. It should go around the table, or inside the table cells (a quick check with any online validator would tell you this).

Also note that forum215 would be a better place for HTML-related question.

Hope this helps,

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

Dan's Page [blue]@[/blue] Code Couch:
Code Couch Snippets & Info:
The Out Atheism Campaign
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top