Styling repeats as tables are not possible for the moment, so the following will not work (yet).
If you have a repeat with a bunch of XForms elements, you may want repeat items and their contents to show up as a proper table. Here are some methods for doing just that:
xf|repeat xf|label {display: none;}
xf|repeat > * {width: 10ex;}
xf|repeat > xf|output {float: left;}
xf|repeat .xf-repeat-item {clear: both;}
Pros:
Cons:
display property xf|repeat xf|label {display: none;}
xf|repeat {display: table}
xf|repeat > .xf-repeat-item {display: table-row}
xf|repeat > .xf-repeat-item > * {display: table-cell}
Pros:
Cons:
Page last modified 22:59, 18 Feb 2008 by Dmccreary?