html list kills table layout
-
Hi there,
i’m trying to insert some complex date into a table cell like but it just result into a corrupted table layout.
[table]test,test2 bla,"<ul><li>foo</li><li>bar</li></ul>"[/table]
this unordered list with two elements results into a table with multiple rows (only one body column) instead of a table with two columns, one header row and one data row.
<table style="width:100%;" width="100%" align="left" class="easy-table easy-table-default tablesorter "> <thead> <tr><th class="easy-table-header">test</th> <th class="easy-table-header">test2</th> </tr> </thead> <tbody> <tr><td>bla</td> <td></td> </tr> <tr><td><ul></ul></td> </tr> <tr><td><li>foo</li></td> </tr> <tr><td><li>bar</li></td> </tr> <tr><td></td> </tr> <tr><td></td> </tr> </tbody></table>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘html list kills table layout’ is closed to new replies.