Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to apply space between table rows in XSL-FO?

Tags:

xsl-fo

In my case i have to provide spaces between two table rows upto .5cm.how can i achieve it.

code::

I have used:

<fo:table-row space-before="0.5cm" keep-together.within-column="always">                                                            

but it doesn't work,but the same attribute i have used in table

<fo:table  space-before="0.5cm" border="solid 0.1mm black">

here it works(in case of providibg space between two table) please let me know the solution

like image 379
Amit Singh Avatar asked Sep 26 '13 04:09

Amit Singh


1 Answers

Use padding on the blocks inside the table cells.

like image 165
Kevin Brown Avatar answered Sep 20 '22 13:09

Kevin Brown