Table
The <table>
tag is a powerful way to display tabular data. Like in HTML each row of the table need to be described by <tr>
and every column by <td>
.
It can only be used within a <body>
.
Example
Attributes
class
class
The styleclass to be applied to all content
widths (optional)
widths (optional)
The widths property allows you to finely control the widths of the table columns. Add a space separated list of widths per column here, e.g. "1cm 15mm 6cm 22mm"
Last updated