Controling space between Text Items when using htp.p('HTMLDB_ITEM.TEXT')
PaulPAug 20 2006 — edited Aug 23 2006I'm using the following code inside a table tag within a loop to generate a multi-row printable form
htp.p('<td cellspacing="0" align="right" width="100%" style="font-size:8pt">'||HTMLDB_ITEM.TEXT(p_idx=>2,p_size=>1)||'</td>');
I'm still getting gaps between rows.
How do I control the space between each row ? I want each text item row packed up like a spreadsheet with no gaps between rows. Although not shown (border="0") there is the enclosing table cell for each field, so what I want is no cellspacing and maximized item height within each cell.
But with the above code I'm getting...
___
___]
___
___]
___
___]
etc.
but I want
____
____]
____]
____]
Anyone know how to do this?
regards
Paul P