What are others doing for page layout? I've got a fun page to implement with a complicated layout -- disjoint items on the same rows and columns, some top-aligned, some left-aligned, some right-aligned, some center-aligned.
My first pass on it was to use a lot of panelGrids, but panelGrid doesn't provide any means for specifying cell css styles. My current thinking is to implement a t:panelGrid that supports a t:styleCell wrapper class (like t:column in t:dataTable) which would allow me to individually specify css styles for each cell (The first could be left-aligned and the next center-aligned, and the last right-aligned, for example).

