gperriard
gperriard

Reputation: 1097

How to add a border on a table to a generated file from PrinceXML?

I try to put a border on a table for printview and in pdf file. It works in the printview of the most of browsers but when I generated a pdf which use the same css file, it doesn't work. To generate the pdf file I use PrinceXML.

Do you know how to add the borders in css for PrinceXML ?

Upvotes: 0

Views: 198

Answers (1)

Simone
Simone

Reputation: 21262

Try

table, tr, td { border: 1px solid black !important }

Upvotes: 1

Related Questions