I'm trying to draw a vertical line in a fo:table-cell that connects the row-top with the row-bottom. I wrote following code to draw the line. The issue is that even though the height of the vertical line is same as the the height of the table-cell, the vertical line stays smaller than the cell height. What am I missing here?
See the attached screen-shot to see the generated output for this code. http://old.nabble.com/file/p32034549/pdf.gif <fo:table-row keep-together="always"> <fo:table-cell number-columns-spanned="2" height="12.5pt" border-end-color="#000000" border-start-color="#000000" border-end-style="solid" border-start-style="solid" border-end-width="0.5pt" border-bottom="0.5pt solid #000000" border-start-width="0.5pt" border-top="0.0pt solid #000000" border-style="solid"> <fo:block> <fo:instream-foreign-object width="341pt" height="12.5pt" content-type="image/svg+xml"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="341pt" height="12.5pt"> <g stroke="black" stroke-width="0.5" stroke-linejoin="miter" fill="none"> <line x1="50" y1="0" x2="50" y2="12.5"/> </g> </svg> </fo:instream-foreign-object> </fo:block> </fo:table-cell> </fo:table-row> -- View this message in context: http://old.nabble.com/space-at-the-bottom-of-fo%3Atable-cell-tp32034549p32034549.html Sent from the FOP - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org