由iText生成的PDF的圆形边框

时间:2014-02-19 13:01:35

标签: html css pdf itext

我正在使用iText库将HTML文件转换为PDF。我想要一张圆角的桌子。以下是我正在使用的CSS。

table {
    border-spacing: 0;
}
th, td {
    border: 1px solid #000;
    padding: 0.5em 1em;
}
/* the first 'th' within the first 'tr' of the 'thead': */
tr:first-child td:first-child {
    border-radius: 0.6em 0.6em 0 0;
}
/* the last 'th' within the first 'tr' of the 'thead': */
tr:first-child td:last-child {
    border-radius: 0.6em 0.6em 0 0;
}
/* the first 'td' within the last 'tr' of the 'tbody': */
tr:last-child td:first-child {
    border-radius: 0.6em 0.6em 0 0;
}
/* the last 'td' within the last 'tr' of the 'tbody': */
tr:last-child td:last-child {
    border-radius: 0 0 0.6em 0.6em;
}

我能够在浏览器中看到圆角。但是,当我生成PDF时,圆角不存在。任何帮助将不胜感激。

0 个答案:

没有答案