how can create table but within table there forma | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

how can create table but within table there forma

23rd Feb 2017, 11:51 AM
Goodluck Ferdnand
Goodluck Ferdnand - avatar
2 Antworten
+ 2
Can reformulate the question? if you want to create a table =>> <table style="width:100%"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Age</th> </tr> <tr> <td>Jill</td> <td>Smith</td> <td>50</td> </tr> <tr> <td>Eve</td> <td>Jackson</td> <td>94</td> </tr> </table>
23rd Feb 2017, 12:36 PM
Didi Georgel Danaila
Didi Georgel Danaila - avatar
+ 1
Nested tables need to be inside cell elements: <table> <tr> <td> <table><tr><td>some text</td></tr></table> </td> </tr> </table>
24th Feb 2017, 11:39 PM
visph
visph - avatar