Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Nesting Tables within Tables
Can I nest tables within tables?
✍: FYIcenter
Yes, a table can be embedded inside a cell in another table. Here's a simple example:
<table> <tr> <td>this is the first cell of the outer table</td> <td>this is the second cell of the outer table, with the inner table embedded in it <table> <tr> <td>this is the first cell of the inner table</td> <td>this is the second cell of the inner table</td> </tr> </table> </td> </tr> </table>
2007-03-03, 5184👍, 0💬
Popular Posts:
What is triple constraint triangle in project management ? Project Management triangle is depicted a...
Can you explain different software development life cycles -part II? Water Fall Model This is the ol...
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java cla...
How To Write a Minimum Atom 1.0 Feed File? - RSS FAQs - Atom Feed Introduction and File Generation I...
How To List All Values of Submitted Fields? - PHP Script Tips - Processing Web Forms If you want lis...