将表列宽度设置为小于内容

时间:2016-05-23 14:37:43

标签: html css pdf flying-saucer

我在我的Java代码中使用Flying Saucer PDF生成库将HTML模板转换为PDF。模板由具有固定列数的表组成。我希望每列都有一个固定的宽度,其中的内容可以在溢出时隐藏。我为这个任务编写了以下CSS -

.col1 {
    width: 50px;
    max-width: 50px;
    min-width: 50px;
}
.col2 {
    width: 70px;
    max-width: 70px;
    min-width: 70px;
}
.col3 {
    width: 120px;
    max-width: 120px;
    min-width: 120px;
}
td, th {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

显然,如果内容超过它,则不会限制列宽。该模板在Chrome和Firefox中看起来不错,但在生成的PDF中却没有。

有没有办法用Flying Saucer PDF限制每列的宽度?

1 个答案:

答案 0 :(得分:3)

您可以在表格中添加以下样式:table-layout:fixed

示例:

<html>
    <head>
        <style type="text/css">
            .col1 {width: 50px;max-width:50px;min-width: 50px;}
            .col2 {width: 70px;max-width: 70px;min-width: 70px;}
            .col3 {width: 120px;max-width: 120px;min-width: 120px;}
            table{table-layout:fixed;}  
            td, th {
                border:1px solid red
                overflow: hidden;
                white-space: nowrap;
            }
    </style>
    </head>
    <body>
      <table >
        <thead>
          <tr>
            <td class="col1">Col1</td>
            <td class="col2">Col2</td>
            <td class="col3">Col3</td>
          </tr>
        </thead>
        <tbody>
            <tr>
                <td class="col1">Lorem ipsum dolor sit amet, consectetur </td>
                <td class="col2">la, molestie vel diam vitae, bibendum consequat enim. </td>
                <td class="col3">s non metus. Donec auctor ipsum in quam bibendum, sit a</td>
            </tr>
        </tbody>
      </table>
    </body>
</html>