Web Report formatting

(imported topic written by netmeister91)

I have a record set that gets returns and trying to format it into an nice table.

I have a style sheet that centers the contents of the table cell and all that works fine.

What I want is to left justify the contents of one of the table cells as shown below.

The table comes out looking fine but the cell that should be left justified is centered as is all the other table cells.

td of " " & td of " " & td of " " & td of “X” & td of item 0 of it & html “

” & item 1 of it & html “” & td of item 2 of it)

I’ve tried

html “

” & item 1 of it & html “”

html “

” & item 1 of it & html “”

html “

” & item 1 of it & html “”

html “

” & item 1 of it & html “”

It look like the html formatter is marginally functional… Either that or there is some cryptic solution that I can’t see.

This is not the whole style sheet but you can see what I’m doing. It may not format correct when displayed here

td{

text-align:center;

padding:10px;

padding-top:2px;

padding-bottom:2px;

no-wrap;

}

(imported comment written by Lee Wei)

Here is an example that you might be able to use.

(html 
"<table border=1>" & it & html 
"</table>") of concatenation of trs of ( td 
"align=center" of item 0 of it & td 
"style=%22text-align: center;%22" of item 1 of it & td 
"style=%22text-align: center; padding:10px; %22" of item 2 of it ) of (
"France", 
"100.00", 
"Paris"; 
"United States of America", 
"2000000000.00", 
"Washington D.C.")