Forum How do I...?

Declare XML elements to be a table?

srobertjames
If my document is in non-HTML XML, how can I declare that, for instance, all <row> elements should be in table rows (<tr>)?
mikeday
With the display property:
row { display: table-row }
srobertjames
Thanks!