2016-11-26 3 views
-4

Nest Tabelle, d. H. Tabelle unter Tabelle. Ich habe viele Zeit mit vielen Attributen versucht, aber ich bekomme nicht, was ich will. Bitte sagen Sie mir hier Attribute wie dies zu tun ist. DankWie Nest Tabelle in HTML?

+1

uns bitte, was Sie versucht haben. – Nhan

Antwort

0

Try this:

<table border=1> 
 
    <tr> 
 
    <td>First cell in first table. The cell to the right has the second table in it.</td> 
 
    <td> 
 

 
     <table> 
 
     <tr><td>nested table</td></tr> 
 
     <tr><td>nested table</td></tr> 
 
     </table> 
 

 
    </td> 
 
    </tr> 
 
</table>