html - Is it wise or acceptable to create a table with a different number of columns (td) for each row (tr) -
i wondering if wise or acceptable create table different number of columns (td) each row (tr) using html. example:
<table> <tr> <td>title</td> </tr> <tr> <td>text</td> <td>and more text</td> </tr> </table>
do have include colspan?
you not have include colspan=
, however, size of largest <td></td>
determine width of column displayed. different browsers (and releases) render table differently (how non-defined area displayed).
Comments
Post a Comment