Forum How do I...?

Border-spacing property doesn't seem to accept second paramenter.

We have border-spacing : 10px 0px (10px horizontal 0px vertical) in html. But prince, doesn't seem to support second parameter i.e., 0px (vertical). When I use "border-spacing : 10px 0px", it adds border spacing to all the sides. But I need to add border-spacing only to left and right side. Is there any other way to achieve this in prince. I am using prince 11. Thank you.
mikeday
This should work fine, try this example:
<table border="1" style="border-spacing: 10px 0px">
<tr><td>ABC</td><td>DEF</td></tr>
<tr><td>ABC</td><td>DEF</td></tr>
<tr><td>ABC</td><td>DEF</td></tr>
</table>

Yes it works! Thank you.