QML - Create Your Own Adventure

Name Topic Used in Type
td Station tr element
Normal cells of the table.
Sample:
<table>
   <caption>Shop items</caption>
   <tr>
      <th>Magic items</th><th class="price">Price</th>
      <th>Other items</th><th class="price">Price</th>
   </tr>
   <tr>
      <td>Staff</td><td class="price">12</td>
      <td>Sword</td><td class="price">30</td>
   </tr>
   <tr>
      <td>Healing potion</td><td class="price">3</td>
      <td>Bread</td><td class="price">1</td>
   </tr>
</table>

Attributes: rowspan | colspan | class