html2pdf库在td而不是表上添加边框

时间:2018-04-18 09:21:17

标签: php html css html2pdf

当我在桌面上添加边框时,它会在每个td上添加边框,但我只需要对表格部分进行边框处理,有什么办法可以做到这一点吗?

此外,是否有可能以某种方式将表格宽度调整为100%,但不是内联?因为我的表是由php生成的,我无法访问内联样式,所以它产生的表的结果超出了主要内容。我可以访问表类:

<style>

.Flex.Standard.FlexTable {
    width: 100%;
}

</style>

但它不起作用。此宽度属性只能在内联表上设置。也许有人知道一些技巧?

以下是代码:

<table style="width: 100%; text-align: center; margin-top: 10px;border-collapse: collapse;" border="1" borderColor="#e2e2e2">
    <tr>
       <td style="width: 50%; padding: 10px;text-align: center;">
           <?php echo '<img src=' . $imageSrc . '>'; ?>
       </td>
       <td style="width: 50%; padding: 10px;text-align: center;">
            <?php echo '<img src=' . $imageSrc . '>'; ?>
       </td>
     </tr>
</table>

0 个答案:

没有答案