Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
959 views
in Technique[技术] by (71.8m points)

pdf - Freemarker Table

I'm looking to create a table that has blank values.enter image description here I wrote code to build a template:

<table style="width: 50%; border: 0.5px">
<thead>
    <tr>
    <th scope="col" style="width: 25%;">LC</th>
    <th scope="col" style="width: 25%;">PN</th>
    <th scope="col" style="width: 25%;">DESCRIPTION</th>
    <th scope="col" style="width: 25%;">QTY</th>
    <th scope="col" style="width: 25%;">AMT</th>
    </tr>
</thead><tr>
    <td style="width: 25%;"></td>
    <td style="width: 25%;"></td>
    <td style="width: 25%;"></td>
    <td style="width: 25%;"></td>
    </tr></table>
</body>

i'd like to have it render like one of the tables at the bottom, but it renders with only the title showing up. How can I adjust the code to 1. get the tables to appear with all boxes like in the image, 2. get them to dispaly side by side?

question from:https://stackoverflow.com/questions/65944075/freemarker-table

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...