QML - Create Your Own Adventure

Name Topic Used in Type
colspan Station th attribute
The column-span (how many units of the table grid a cell covers).
Sample:
<table>
   <tr>
      <th colspan="2">Hello world</td>
   </tr>
   <tr>
      <td>Hello</td>
      <td>World</td>
   </tr>
</table>