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

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -